I have a flow that executed in Power Apps and the result of Power Automate will store to collection, but after executing the flow, the collection still empty of rows.
Here is my code in Power Apps
ClearCollect(
collTest,
SORExcuteQueryString.Run(varStrQuery)
);
And this is my Flow
All action in Flow are successfully
and this is my Scheme of the response
{
"type": "array",
"items": {
"type": "object",
"properties": {
"Area": {
"type": "string"
},
"DADays": {
"type": "integer"
},
"CustomerName": {
"type": "string"
},
"SalesmanName": {
"type": "string"
},
"ProductName": {
"type": "string"
},
"QTY": {
"type": "integer"
},
"UOM": {
"type": "string"
},
"OpportunityNo": {
"type": "string"
},
"ProductFamily": {
"type": "string"
}
},
"required": [
"Area",
"DADays",
"CustomerName",
"SalesmanName",
"ProductName",
"QTY",
"UOM",
"OpportunityNo",
"ProductFamily"
]
}
}