Mapping Data Fabric Entity into App Variable

Hello guys,

i am trying to do a query in my app,
but i can’t make it work

hope you guys can help me on this.
thank you

Hi @JomarieBancolo

Have you imported the Data Fabric entity in your App under the “Entities” tab?

You can then just simply use an “Update Entity Record” input to write data back into your entity:

Perhaps I missed it in your App but please confirm.

Hi @JomarieBancolo

From the screenshot, it looks like your Data Fabric entity output is a collection/object, but in App Studio you are trying to bind it directly as a String

That’s why mapping is failing.You need to access the actual field/property from the record first.

Example:

Processes.CaseLog_Transactions_process_QueryEntityData.out_listExcelRecords(0).Crew

or

Processes.CaseLog_Transactions_process_QueryEntityData.out_listExcelRecords.CurrentValue.Crew

(depending on whether output is List or IEnumerable)