Hi,
The date range I'm using in my DURING AWQL query doesn't seem to be having any effect. For example, the following query which requests campaign object data (no stats):
SELECT
AccountCurrencyCode,
AccountDescriptiveName,
AccountTimeZone,
AdvertisingChannelSubType,
AdvertisingChannelType,
Amount,
BaseCampaignId,
BiddingStrategyId,
BiddingStrategyName,
BiddingStrategyType,
BidType,
BudgetId,
CampaignDesktopBidModifier,
CampaignGroupId,
CampaignId,
CampaignMobileBidModifier,
CampaignName,
CampaignStatus,
CampaignTabletBidModifier,
CampaignTrialType,
CustomerDescriptiveName,
EndDate,
EnhancedCpcEnabled,
EnhancedCpvEnabled,
ExternalCustomerId,
IsBudgetExplicitlyShared,
LabelIds,
Labels,
Period,
ServingStatus,
StartDate,
TrackingUrlTemplate,
UrlCustomParameters
FROM CAMPAIGN_PERFORMANCE_REPORT
DURING TODAY
Returns ALL campaigns under a specific account, instead of only campaigns that are running today. I have noticed this behavior for other objects as well.
What am I doing wrong? How can I filter reports to include campaigns/objects that are only currently running?