I've been running these reports for several days (v13 Java API) now
and it appears that it doesn't return data for the previous day. So,
if I run the report today (Jan 8) with date range (Jan 6 - Jan 7) I
get data only for Jan 6. This is different than other reports (eg,
CreativeReportJob). I did
ys ago, if you never get data for yesterday) first
> becomes available?
>
> Cheers,
> -Jeff Posnick, AdWords API Team
>
> On Jan 8, 5:23 pm, dsb wrote:
>
> > I've been running these reports for several days (v13 Java API) now
> > and it appears that it doesn't retu
I have a case where the keywords performance report does not return data for
one of our ad groups that is returned in the ad performance report. Below,
'kwid-4' is missing from the keywords performance report.
The only difference I can see with the missing keywords performance report
row is th
Yes, in the ad perf report, all those rows had > 0 impressions.
The "kwid-n" values are returned as "keywordID=" attribute values in the
original XML, yes.
I just noticed today, too, that in these cases, the network="Display
Network". Not only that, I've found cases where I have (imps > 0) _a
FWIW, this made no difference:
In my report definition selector:
String [] networks =
{
"CONTENT", "SEARCH",
};
Predicate p = new Predicate("AdNetworkType1", PredicateOperator.IN,
networks);
selector.setPredicates(new Predicate [] {p});
--