Updatequery InfotableFunctions
Isn't the UpdateQuery service supposed to update the infotable passed to it in the "t" parameter? In this support document, InfoTableFunctions the service description states that the UpdateQuery service will "Update rows that match a query with a provided set of values." However, when I use it (see the example below), the result infotable contains the updated records, but those updates are not saved to the infotable passed to it in the "t" parameter. Am I missing a step?
For example:
In the code below, the result infotable contains the correct records filtered from the FrameComponents by the query and they are updated properly with the values infotable. However, the cooresponding records in the FrameComponents infotable are not updated. What do I need to do to update the FrameComponents infotable?
var query = {
"filters": {
"type": "EQ",
"fieldName": "gath_cart_no",
"value": row.gath_cart_no
}
};
var params = {
t: FrameComponents /* INFOTABLE */,
query: query /* QUERY */,
values: cartUID_gathCart_link /* INFOTABLE */
};
// result: INFOTABLE
var result = Resources["InfoTableFunctions"].UpdateQuery(params);
Thanks,
Steve

