Dear Google,

I have a script that doesn't work in the new expreience. 
Here is the script:

// Copy the link of the new sheet and paste it below -
var SPREADSHEET_URL = 
"https://docs.google.com/spreadsheets/d/1hWwzTXhH163YIATbMUMvEmwZx5OAMXoczqMM337xYw0/edit#gid=0";;
// Enter your filters below, for multiple filters use AND clause. E.g. 
Impressions > 100 AND
// Currently default filter is Clicks < 1 i.e. Zero Clicks
//var FILTERS = "Conversions < 1 AND Cost > 10";
var FILTERS = "metrics.clicks < 1"
// Enter time duration below. Possibilities:
// TODAY | YESTERDAY | LAST_7_DAYS | LAST_WEEK | LAST_BUSINESS_WEEK |
//THIS_MONTH | LAST_MONTH |
// LAST_14_DAYS | LAST_30_DAYS | THIS_WEEK_SUN_TODAY |
//THIS_WEEK_MON_TODAY | LAST_WEEK_SUN_SAT
// Currently default time duration is set to: LAST_30_DAYS
var TIME_DURATION = "LAST_30_DAYS";
var COUNT_LIMIT = 999999;
function main(){
var products = getFilteredShoppingProducts();
products.sort(function(a,b){return a[0] > b[0];});
products = products.slice(0, COUNT_LIMIT);
pushToSpreadsheet(products);
}

function getFilteredShoppingProducts(){
  /*
  var query = "SELECT OfferId, Cost, Conversions FROM 
shopping_performance_view WHERE " +
  FILTERS + " DURING "+ TIME_DURATION;
  */
  
  var query = "SELECT segments.product_item_id, metrics.cost_micros, 
metrics.conversions FROM shopping_performance_view WHERE " + FILTERS + " 
AND segments.date DURING " + TIME_DURATION
  var products = [];
    var count = 0;
    var report = AdWordsApp.report(query);
    var rows = report.rows();
    while (rows.hasNext()) {
        var row = rows.next();
        var offer_id = row['OfferId'];
        products.push([offer_id]);
        count += 1;
    }
    Logger.log(count);
    return products;
}
function pushToSpreadsheet(data) {
    var spreadsheet = SpreadsheetApp.openByUrl(SPREADSHEET_URL);
    var sheet = spreadsheet.getSheetByName('Custom_Label');
    var lastRow = sheet.getMaxRows();
    sheet.getRange('A2:A' + lastRow).clearContent();
    var start_row = 2;
    var endRow = start_row + data.length - 1;
    var range = sheet.getRange('A' + start_row + ':' + 'A' + endRow);
    if (data.length > 0) {
        range.setValues(data);
    }
    return;
}

Main problem with script is spreadsheet is blank. The script dont able to 
push my product ID to the spreeadsheet.

Could you help me?

Thanks!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7b7a5544-97e0-42d9-b02a-f0322b9d394cn%40googlegroups.com.
  • [Z... Csaba Bálint
    • ... 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
      • ... Csaba Bálint

Reply via email to