I'm getting a Ad Performance Report in v201109 and it only has 28 row elements in the XML. However, v13 of the Keyword Activity Report has 196 row elements for the same client/date. Yes, I understand that the reports are different but the Ad Performance report should have all the keywordIDs that are being used per ad...looks like it's missing quite a few. Why am I missing so many rows and how can I get the complete report? Here's the VB.NET code that I'm using for the Ad Hoc ReportDefinition:
Try ' Create selector. Dim selector As New Selector selector.fields = CacheFactory.GetGoogleReportFields(STR_GoogleCPRListCache).ToArray() selector.dateRange = reportDateRange ' Create report definition. Dim reportDefinition As New ReportDefinition reportDefinition.reportName = (reportName & " #" & DirectCast((DateTime.UtcNow - New DateTime(1970, 1, 1)), TimeSpan).TotalMilliseconds.ToString) reportDefinition.dateRangeType = ReportDefinitionDateRangeType.CUSTOM_DATE reportDefinition.reportType = reportDefinitionType reportDefinition.downloadFormat = DownloadFormat.XML reportDefinition.selector = selector reportDefinition.includeZeroImpressions = True Return reportDefinition Catch ex As Exception Throw ex End Try -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en