Re: Reproducible ReportDownloadError.ERROR_GETTING_RESPONSE_FROM_BACKEND

2014-01-09 Thread Dorian Kind
Hi Paul,

many thanks for the update. I can confirm that by transforming the 
predicate into two predicates with GREATER_THAN and LESS_THAN operators, 
it's possible to "simulate" an EQUALS operator.
Interestingly, the "AdGroupId" field was not required, the report 
definition worked just fine when only using "Name", for example.

Thanks again and best regards,
Dorian

On Thursday, January 9, 2014 5:42:43 PM UTC+1, Paul Matthews (AdWords API 
Team) wrote:
>
> Hi Dorian,
>
> It seems there are a couple issues:
>
>- The ConversionValue and is only compatible with less than (not less 
>than or equal to).
>- You need to include the AdGroupId - it's a required attribute for 
>the report
>
>
> Regards,
>
> - Paul, AdWords API Team.
>
> On Wednesday, 27 November 2013 12:31:10 UTC, Dorian Kind wrote:
>>
>> Hi Paul,
>>
>> of course! Sorry for not catching that myself. However, after removing 
>> the ordering field, I still get the error (as you have probably experienced 
>> yourself).
>>
>> Thanks again for your efforts & cheers,
>> Dorian
>>
>> On Wednesday, November 27, 2013 12:27:42 PM UTC+1, Paul Matthews (AdWords 
>> API Team) wrote:
>>>
>>> Hi Dorian,
>>>
>>> We're still looking into the errors, but one thing that came up is that 
>>> the use of ordering and paging aren't supported by AdHoc reports.
>>>
>>> Regards,
>>>
>>> - Paul, AdWords API Team.
>>>
>>> On Wednesday, 27 November 2013 08:42:25 UTC, Dorian Kind wrote:

 Thanks for the feedback, Paul.
 Cheers

 On Tuesday, November 26, 2013 12:33:55 PM UTC+1, Paul Matthews (AdWords 
 API Team) wrote:
>
> Hi Dorian,
>
> I can confirm that we're able to recreate the bug our side. We're 
> looking into this issue, I'll get back to you as soon as we have more 
> information.
>
> Regards,
>
> - Paul, AdWords API Team.
>
> On Monday, 25 November 2013 12:27:20 UTC, Dorian Kind wrote:
>>
>> Hi all,
>>
>> I have an issue where just adding a predicate filtering by 
>> ConversionValue in an AdGroup Performance Report will raise the 
>> deaded ERROR_GETTING_RESPONSE_FROM_BACKEND response. Here's my report 
>> definition (Python syntax, but you'll get the idea):
>>
>> {
>>'reportName': 'Test',
>>'dateRangeType': 'CUSTOM_DATE',
>>'reportType': 'ADGROUP_PERFORMANCE_REPORT',
>>'downloadFormat': 'CSV',
>>'selector': {
>>   'fields': ['Date', 'HourOfDay', 'Name', 'Conversions', 
>> 'ConversionValue'],
>>   'dateRange': {
>>  'min': '20131101',
>>  'max': '20131125'
>>   },
>>   'predicates': [
>>  {
>> 'field': 'ConversionValue',
>> 'operator': 'LESS_THAN_EQUALS',
>> 'values': ["1"]
>>  }
>>   ],
>>   'orderBy':'Date'
>> }
>>
>> I tested requests for a number of different accounts, some very small 
>> ones as well (to rule out a timout-related issue), and I always get the 
>> same error. If I remove the predicate, the expected data is returned.
>> Any thoughts?
>>
>> Thanks and cheers,
>> Dorian
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Reproducible ReportDownloadError.ERROR_GETTING_RESPONSE_FROM_BACKEND

2014-01-09 Thread Paul Matthews (AdWords API Team)
Hi Dorian,

It seems there are a couple issues:

   - The ConversionValue and is only compatible with less than (not less 
   than or equal to).
   - You need to include the AdGroupId - it's a required attribute for the 
   report


Regards,

- Paul, AdWords API Team.

On Wednesday, 27 November 2013 12:31:10 UTC, Dorian Kind wrote:
>
> Hi Paul,
>
> of course! Sorry for not catching that myself. However, after removing the 
> ordering field, I still get the error (as you have probably experienced 
> yourself).
>
> Thanks again for your efforts & cheers,
> Dorian
>
> On Wednesday, November 27, 2013 12:27:42 PM UTC+1, Paul Matthews (AdWords 
> API Team) wrote:
>>
>> Hi Dorian,
>>
>> We're still looking into the errors, but one thing that came up is that 
>> the use of ordering and paging aren't supported by AdHoc reports.
>>
>> Regards,
>>
>> - Paul, AdWords API Team.
>>
>> On Wednesday, 27 November 2013 08:42:25 UTC, Dorian Kind wrote:
>>>
>>> Thanks for the feedback, Paul.
>>> Cheers
>>>
>>> On Tuesday, November 26, 2013 12:33:55 PM UTC+1, Paul Matthews (AdWords 
>>> API Team) wrote:

 Hi Dorian,

 I can confirm that we're able to recreate the bug our side. We're 
 looking into this issue, I'll get back to you as soon as we have more 
 information.

 Regards,

 - Paul, AdWords API Team.

 On Monday, 25 November 2013 12:27:20 UTC, Dorian Kind wrote:
>
> Hi all,
>
> I have an issue where just adding a predicate filtering by 
> ConversionValue in an AdGroup Performance Report will raise the 
> deaded ERROR_GETTING_RESPONSE_FROM_BACKEND response. Here's my report 
> definition (Python syntax, but you'll get the idea):
>
> {
>'reportName': 'Test',
>'dateRangeType': 'CUSTOM_DATE',
>'reportType': 'ADGROUP_PERFORMANCE_REPORT',
>'downloadFormat': 'CSV',
>'selector': {
>   'fields': ['Date', 'HourOfDay', 'Name', 'Conversions', 
> 'ConversionValue'],
>   'dateRange': {
>  'min': '20131101',
>  'max': '20131125'
>   },
>   'predicates': [
>  {
> 'field': 'ConversionValue',
> 'operator': 'LESS_THAN_EQUALS',
> 'values': ["1"]
>  }
>   ],
>   'orderBy':'Date'
> }
>
> I tested requests for a number of different accounts, some very small 
> ones as well (to rule out a timout-related issue), and I always get the 
> same error. If I remove the predicate, the expected data is returned.
> Any thoughts?
>
> Thanks and cheers,
> Dorian
>


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Reproducible ReportDownloadError.ERROR_GETTING_RESPONSE_FROM_BACKEND

2014-01-09 Thread Paul Matthews
Hi Dorian,

It seems there are a couple issues:

   - The ConversionValue and is only compatible with less than (not less 
   than or equal to).
   - You need to include the AdGroupId - it's a required attribute for the 
   report


Regards,

- Paul, AdWords API Team.

On Wednesday, 8 January 2014 17:46:09 UTC, Paul Matthews (AdWords API Team) 
wrote:
>
> Hi Dorian,
>
> Just to keep you informed, we're still looking into this issue. I'll get 
> back to you as soon as we have more information to share.
>
> Regards,
>
> - Paul, AdWords API Team.
>
> On Wednesday, 27 November 2013 12:31:10 UTC, Dorian Kind wrote:
>>
>> Hi Paul,
>>
>> of course! Sorry for not catching that myself. However, after removing 
>> the ordering field, I still get the error (as you have probably experienced 
>> yourself).
>>
>> Thanks again for your efforts & cheers,
>> Dorian
>>
>> On Wednesday, November 27, 2013 12:27:42 PM UTC+1, Paul Matthews (AdWords 
>> API Team) wrote:
>>>
>>> Hi Dorian,
>>>
>>> We're still looking into the errors, but one thing that came up is that 
>>> the use of ordering and paging aren't supported by AdHoc reports.
>>>
>>> Regards,
>>>
>>> - Paul, AdWords API Team.
>>>
>>> On Wednesday, 27 November 2013 08:42:25 UTC, Dorian Kind wrote:

 Thanks for the feedback, Paul.
 Cheers

 On Tuesday, November 26, 2013 12:33:55 PM UTC+1, Paul Matthews (AdWords 
 API Team) wrote:
>
> Hi Dorian,
>
> I can confirm that we're able to recreate the bug our side. We're 
> looking into this issue, I'll get back to you as soon as we have more 
> information.
>
> Regards,
>
> - Paul, AdWords API Team.
>
> On Monday, 25 November 2013 12:27:20 UTC, Dorian Kind wrote:
>>
>> Hi all,
>>
>> I have an issue where just adding a predicate filtering by 
>> ConversionValue in an AdGroup Performance Report will raise the 
>> deaded ERROR_GETTING_RESPONSE_FROM_BACKEND response. Here's my report 
>> definition (Python syntax, but you'll get the idea):
>>
>> {
>>'reportName': 'Test',
>>'dateRangeType': 'CUSTOM_DATE',
>>'reportType': 'ADGROUP_PERFORMANCE_REPORT',
>>'downloadFormat': 'CSV',
>>'selector': {
>>   'fields': ['Date', 'HourOfDay', 'Name', 'Conversions', 
>> 'ConversionValue'],
>>   'dateRange': {
>>  'min': '20131101',
>>  'max': '20131125'
>>   },
>>   'predicates': [
>>  {
>> 'field': 'ConversionValue',
>> 'operator': 'LESS_THAN_EQUALS',
>> 'values': ["1"]
>>  }
>>   ],
>>   'orderBy':'Date'
>> }
>>
>> I tested requests for a number of different accounts, some very small 
>> ones as well (to rule out a timout-related issue), and I always get the 
>> same error. If I remove the predicate, the expected data is returned.
>> Any thoughts?
>>
>> Thanks and cheers,
>> Dorian
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Reproducible ReportDownloadError.ERROR_GETTING_RESPONSE_FROM_BACKEND

2014-01-08 Thread Paul Matthews (AdWords API Team)
Hi Dorian,

Just to keep you informed, we're still looking into this issue. I'll get 
back to you as soon as we have more information to share.

Regards,

- Paul, AdWords API Team.

On Wednesday, 27 November 2013 12:31:10 UTC, Dorian Kind wrote:
>
> Hi Paul,
>
> of course! Sorry for not catching that myself. However, after removing the 
> ordering field, I still get the error (as you have probably experienced 
> yourself).
>
> Thanks again for your efforts & cheers,
> Dorian
>
> On Wednesday, November 27, 2013 12:27:42 PM UTC+1, Paul Matthews (AdWords 
> API Team) wrote:
>>
>> Hi Dorian,
>>
>> We're still looking into the errors, but one thing that came up is that 
>> the use of ordering and paging aren't supported by AdHoc reports.
>>
>> Regards,
>>
>> - Paul, AdWords API Team.
>>
>> On Wednesday, 27 November 2013 08:42:25 UTC, Dorian Kind wrote:
>>>
>>> Thanks for the feedback, Paul.
>>> Cheers
>>>
>>> On Tuesday, November 26, 2013 12:33:55 PM UTC+1, Paul Matthews (AdWords 
>>> API Team) wrote:

 Hi Dorian,

 I can confirm that we're able to recreate the bug our side. We're 
 looking into this issue, I'll get back to you as soon as we have more 
 information.

 Regards,

 - Paul, AdWords API Team.

 On Monday, 25 November 2013 12:27:20 UTC, Dorian Kind wrote:
>
> Hi all,
>
> I have an issue where just adding a predicate filtering by 
> ConversionValue in an AdGroup Performance Report will raise the 
> deaded ERROR_GETTING_RESPONSE_FROM_BACKEND response. Here's my report 
> definition (Python syntax, but you'll get the idea):
>
> {
>'reportName': 'Test',
>'dateRangeType': 'CUSTOM_DATE',
>'reportType': 'ADGROUP_PERFORMANCE_REPORT',
>'downloadFormat': 'CSV',
>'selector': {
>   'fields': ['Date', 'HourOfDay', 'Name', 'Conversions', 
> 'ConversionValue'],
>   'dateRange': {
>  'min': '20131101',
>  'max': '20131125'
>   },
>   'predicates': [
>  {
> 'field': 'ConversionValue',
> 'operator': 'LESS_THAN_EQUALS',
> 'values': ["1"]
>  }
>   ],
>   'orderBy':'Date'
> }
>
> I tested requests for a number of different accounts, some very small 
> ones as well (to rule out a timout-related issue), and I always get the 
> same error. If I remove the predicate, the expected data is returned.
> Any thoughts?
>
> Thanks and cheers,
> Dorian
>


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Reproducible ReportDownloadError.ERROR_GETTING_RESPONSE_FROM_BACKEND

2013-11-27 Thread Dorian Kind
Hi Paul,

of course! Sorry for not catching that myself. However, after removing the 
ordering field, I still get the error (as you have probably experienced 
yourself).

Thanks again for your efforts & cheers,
Dorian

On Wednesday, November 27, 2013 12:27:42 PM UTC+1, Paul Matthews (AdWords 
API Team) wrote:
>
> Hi Dorian,
>
> We're still looking into the errors, but one thing that came up is that 
> the use of ordering and paging aren't supported by AdHoc reports.
>
> Regards,
>
> - Paul, AdWords API Team.
>
> On Wednesday, 27 November 2013 08:42:25 UTC, Dorian Kind wrote:
>>
>> Thanks for the feedback, Paul.
>> Cheers
>>
>> On Tuesday, November 26, 2013 12:33:55 PM UTC+1, Paul Matthews (AdWords 
>> API Team) wrote:
>>>
>>> Hi Dorian,
>>>
>>> I can confirm that we're able to recreate the bug our side. We're 
>>> looking into this issue, I'll get back to you as soon as we have more 
>>> information.
>>>
>>> Regards,
>>>
>>> - Paul, AdWords API Team.
>>>
>>> On Monday, 25 November 2013 12:27:20 UTC, Dorian Kind wrote:

 Hi all,

 I have an issue where just adding a predicate filtering by 
 ConversionValue in an AdGroup Performance Report will raise the 
 deaded ERROR_GETTING_RESPONSE_FROM_BACKEND response. Here's my report 
 definition (Python syntax, but you'll get the idea):

 {
'reportName': 'Test',
'dateRangeType': 'CUSTOM_DATE',
'reportType': 'ADGROUP_PERFORMANCE_REPORT',
'downloadFormat': 'CSV',
'selector': {
   'fields': ['Date', 'HourOfDay', 'Name', 'Conversions', 
 'ConversionValue'],
   'dateRange': {
  'min': '20131101',
  'max': '20131125'
   },
   'predicates': [
  {
 'field': 'ConversionValue',
 'operator': 'LESS_THAN_EQUALS',
 'values': ["1"]
  }
   ],
   'orderBy':'Date'
 }

 I tested requests for a number of different accounts, some very small 
 ones as well (to rule out a timout-related issue), and I always get the 
 same error. If I remove the predicate, the expected data is returned.
 Any thoughts?

 Thanks and cheers,
 Dorian

>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Reproducible ReportDownloadError.ERROR_GETTING_RESPONSE_FROM_BACKEND

2013-11-27 Thread Paul Matthews (AdWords API Team)
Hi Dorian,

We're still looking into the errors, but one thing that came up is that the 
use of ordering and paging aren't supported by AdHoc reports.

Regards,

- Paul, AdWords API Team.

On Wednesday, 27 November 2013 08:42:25 UTC, Dorian Kind wrote:
>
> Thanks for the feedback, Paul.
> Cheers
>
> On Tuesday, November 26, 2013 12:33:55 PM UTC+1, Paul Matthews (AdWords 
> API Team) wrote:
>>
>> Hi Dorian,
>>
>> I can confirm that we're able to recreate the bug our side. We're looking 
>> into this issue, I'll get back to you as soon as we have more information.
>>
>> Regards,
>>
>> - Paul, AdWords API Team.
>>
>> On Monday, 25 November 2013 12:27:20 UTC, Dorian Kind wrote:
>>>
>>> Hi all,
>>>
>>> I have an issue where just adding a predicate filtering by 
>>> ConversionValue in an AdGroup Performance Report will raise the 
>>> deaded ERROR_GETTING_RESPONSE_FROM_BACKEND response. Here's my report 
>>> definition (Python syntax, but you'll get the idea):
>>>
>>> {
>>>'reportName': 'Test',
>>>'dateRangeType': 'CUSTOM_DATE',
>>>'reportType': 'ADGROUP_PERFORMANCE_REPORT',
>>>'downloadFormat': 'CSV',
>>>'selector': {
>>>   'fields': ['Date', 'HourOfDay', 'Name', 'Conversions', 
>>> 'ConversionValue'],
>>>   'dateRange': {
>>>  'min': '20131101',
>>>  'max': '20131125'
>>>   },
>>>   'predicates': [
>>>  {
>>> 'field': 'ConversionValue',
>>> 'operator': 'LESS_THAN_EQUALS',
>>> 'values': ["1"]
>>>  }
>>>   ],
>>>   'orderBy':'Date'
>>> }
>>>
>>> I tested requests for a number of different accounts, some very small 
>>> ones as well (to rule out a timout-related issue), and I always get the 
>>> same error. If I remove the predicate, the expected data is returned.
>>> Any thoughts?
>>>
>>> Thanks and cheers,
>>> Dorian
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Reproducible ReportDownloadError.ERROR_GETTING_RESPONSE_FROM_BACKEND

2013-11-27 Thread Dorian Kind
Thanks for the feedback, Paul.
Cheers

On Tuesday, November 26, 2013 12:33:55 PM UTC+1, Paul Matthews (AdWords API 
Team) wrote:
>
> Hi Dorian,
>
> I can confirm that we're able to recreate the bug our side. We're looking 
> into this issue, I'll get back to you as soon as we have more information.
>
> Regards,
>
> - Paul, AdWords API Team.
>
> On Monday, 25 November 2013 12:27:20 UTC, Dorian Kind wrote:
>>
>> Hi all,
>>
>> I have an issue where just adding a predicate filtering by 
>> ConversionValue in an AdGroup Performance Report will raise the 
>> deaded ERROR_GETTING_RESPONSE_FROM_BACKEND response. Here's my report 
>> definition (Python syntax, but you'll get the idea):
>>
>> {
>>'reportName': 'Test',
>>'dateRangeType': 'CUSTOM_DATE',
>>'reportType': 'ADGROUP_PERFORMANCE_REPORT',
>>'downloadFormat': 'CSV',
>>'selector': {
>>   'fields': ['Date', 'HourOfDay', 'Name', 'Conversions', 
>> 'ConversionValue'],
>>   'dateRange': {
>>  'min': '20131101',
>>  'max': '20131125'
>>   },
>>   'predicates': [
>>  {
>> 'field': 'ConversionValue',
>> 'operator': 'LESS_THAN_EQUALS',
>> 'values': ["1"]
>>  }
>>   ],
>>   'orderBy':'Date'
>> }
>>
>> I tested requests for a number of different accounts, some very small 
>> ones as well (to rule out a timout-related issue), and I always get the 
>> same error. If I remove the predicate, the expected data is returned.
>> Any thoughts?
>>
>> Thanks and cheers,
>> Dorian
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Reproducible ReportDownloadError.ERROR_GETTING_RESPONSE_FROM_BACKEND

2013-11-26 Thread Paul Matthews (AdWords API Team)
Hi Dorian,

I can confirm that we're able to recreate the bug our side. We're looking 
into this issue, I'll get back to you as soon as we have more information.

Regards,

- Paul, AdWords API Team.

On Monday, 25 November 2013 12:27:20 UTC, Dorian Kind wrote:
>
> Hi all,
>
> I have an issue where just adding a predicate filtering by ConversionValue 
> in an AdGroup Performance Report will raise the 
> deaded ERROR_GETTING_RESPONSE_FROM_BACKEND response. Here's my report 
> definition (Python syntax, but you'll get the idea):
>
> {
>'reportName': 'Test',
>'dateRangeType': 'CUSTOM_DATE',
>'reportType': 'ADGROUP_PERFORMANCE_REPORT',
>'downloadFormat': 'CSV',
>'selector': {
>   'fields': ['Date', 'HourOfDay', 'Name', 'Conversions', 
> 'ConversionValue'],
>   'dateRange': {
>  'min': '20131101',
>  'max': '20131125'
>   },
>   'predicates': [
>  {
> 'field': 'ConversionValue',
> 'operator': 'LESS_THAN_EQUALS',
> 'values': ["1"]
>  }
>   ],
>   'orderBy':'Date'
> }
>
> I tested requests for a number of different accounts, some very small ones 
> as well (to rule out a timout-related issue), and I always get the same 
> error. If I remove the predicate, the expected data is returned.
> Any thoughts?
>
> Thanks and cheers,
> Dorian
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.