Your proposal doesn't work in the way that I'm trying to obtain.
My query report is this one.
var report = AdWordsApp.report(
'SELECT CampaignName,AdGroupName, AdGroupId, ConversionCategoryName,ConversionTypeName, AllConversions FROM KEYWORDS_PERFORMANCE_REPORT '+
'WHERE Id='+keywordId);
Per each keyword I want to get the AllConv Segmented by => Conversions=>Conversions Name. For example, once selected this segment in the adwords console I have this values:
Keyword Status Max CPC Clicks Impr CTR AVC CPC Cost Avg Pos. Conversions All conv.
[word 1] Eligible 0.1 22 100 22% €0.40 100 3.4 100.00 104.00
X-F -- -- -- -- -- -- 90.00 92.00
X-P -- -- -- -- -- -- 2.00 3.00
X-T -- -- -- -- -- -- 8.00 9.00
The keyword has an All conv = 104.00 but I want to get the values segmented (i.e. X-F 92.00, X-P 3.00 and X-T 9.00).