Hello all,
I Have a flow that creates a SP list item, and then passes the ID of the item back to Powerapps.
I call the flow like so:
Set(CopyItemID,CreateAppItems.Run( Blah,Blah,Blah).varcopyid
This works and the flow works perfectly, and in the run history shows this

When I call the variable in powerapps, I am creating another SP list item in another list that I want to have its column "SourceID" be CopyItemID. SourceID is a number column FYI
Patch(CTMS_1, Defaults(CTMS_1),
{SourceID:CopyItemID, Blah, Blah,Blah})
The Item is created but the variable is not passed to the column.

I am also seeing this in the formula when I hover over CopyItemID, but have no errors:

Not sure what is wrong here. Seem like everything is working perfect, but not working.
Any help would be great. Thanks in advance.