Re: [AWQL] includeZeroImpressions doesn't work with PRODUCT PARTITION REPORT

2016-11-20 Thread 'Peter Oliquino' via AdWords API Forum
Hi, This appears to be a very old forum thread. I would recommend that you create a new one and include your concerns in that thread. We can continue our discussion of your issue from there. Thanks and regards, Peter AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: [AWQL] includeZeroImpressions doesn't work with PRODUCT PARTITION REPORT

2016-11-20 Thread mvbentes
I will resurrect this old topic to clarify a little more as the answers here helped me, but still required some legwork. As it seems, at leas in the python API, the default is not to return zero impression rows. The trick is that the checking of the condition appears to be

Re: [AWQL] includeZeroImpressions doesn't work with PRODUCT PARTITION REPORT

2015-10-21 Thread Umesh Dengale
Hello, The CampaignName, CampaignId, AdGroupName, AdGroupId, ProductGroup, Impressions columns support the zero impressions. There is no need to include Impression condition (where clause) in the report. The query will return rows including zero impressions. More information about an

Re: [AWQL] includeZeroImpressions doesn't work with PRODUCT PARTITION REPORT

2015-10-15 Thread road11
Mine does. Try excluding the Impressions column. That might be killing zero-impression rows. I'm bringing down only the ID and name columns for campaign, adgroup, and partition, and that's working for me. If you include certain statistic columns in your select list, it can suppress

[AWQL] includeZeroImpressions doesn't work with PRODUCT PARTITION REPORT

2015-10-15 Thread Mario
As the title says including zero impression rows doesn't work with the PRODUCT_PARTITION_REPORT. I consider this as a bug because i did not found anything in the docs or the internet that says this should not work. My AWQL-Query: SELECT CampaignName, CampaignId, AdGroupName, AdGroupId,

Re: [AWQL] includeZeroImpressions doesn't work with PRODUCT PARTITION REPORT

2015-10-15 Thread Umesh Dengale
Hello, You could use the predicate *WHERE Impressions > 0* in your above report AWQL query instead of *WHERE Impressions >= 0*. Please check out our exclude zero impressions with predicate