You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello everyone i am getting this error how to solve this? [PublisherQueryLanguageContextError.UNEXECUTABLE @ Only constant values and bound values are allowed in the haystack of IN.].
i am using this code :
$statementBuilder = (new StatementBuilder())
->where('AD_UNIT_ID IN ('.$excluded.')');
if ($reportDownloader->waitForReportToFinish()) {
// set download option
$options = new ReportDownloadOptions();
$options->setExportFormat($exportFormat);
$options->setUseGzipCompression(FALSE);
Hello everyone i am getting this error how to solve this?
[PublisherQueryLanguageContextError.UNEXECUTABLE @ Only constant values and bound values are allowed in the haystack of IN.].
i am using this code :
$statementBuilder = (new StatementBuilder())
->where('AD_UNIT_ID IN ('.$excluded.')');
$reportQuery->setStatement($statementBuilder->toStatement());
$reportQuery->setAdUnitView(ReportQueryAdUnitView::HIERARCHICAL);
$reportQuery->setDateRangeType(DateRangeType::TODAY);
$reportJob = new ReportJob();
$reportJob->setReportQuery($reportQuery);
if ($reportDownloader->waitForReportToFinish()) {
// set download option
$options = new ReportDownloadOptions();
$options->setExportFormat($exportFormat);
$options->setUseGzipCompression(FALSE);
The text was updated successfully, but these errors were encountered: