
In my original App, I had two flows that would run.
I decided to combine them into one flow.
I craeted a new flow, combined them.
When I add it to Power Apps, I keep getting an argument error. I can't figure out why or how to fix it.
It is the same thing I have done before, so I am not sure what is happening here.
'EAUCA-ReCal-Teams'.Run(
JSON(
{CaseNumber: Self.LastSubmit.Title,
CaseType: Self.LastSubmit.CaseType.Value,
EngineerSMTP: Self.LastSubmit.AssignedTo.Value,
CaseSpecialty: Self.LastSubmit.CaseSpecialty,
ID: Self.LastSubmit.AssignedTo.Id,
AssignTime: Self.LastSubmit.AssignmentTime,
AR: Self.LastSubmit.AR,
Offering: Concat(Self.LastSubmit.ServiceNameOffering, Value&" ")
}
)
);
When you look at my flow, the only thing that has changed is when I choose AskInPower Apps.
It has been giving me multiple for some reason in this new flow.
{
"type": "object",
"properties": {
"CaseNumber": {
"type": "string"
},
"CaseType": {
"type": "string"
},
"EngineerSMTP": {
"type": "string"
},
"CaseSpecialty": {
"type": "string"
},
"ID": {
"type": "integer"
},
"AssignTime": {
"type": "string"
},
"AR": {
"type": "boolean"
},
"Offering": {
"type": "string"
}
}
}
Again, all I did was combine the two flows into one.
I do have a branch that happens after the Parse JSON