I found out the reason why the data was not displayed but unsure of how to fix it.
My app is based on the Order Capture app and you add the Order Detail through this Detail Inline part.
The email was set to sent before this part is synced completely. I’m unsure of how to delay the timing to make sure everything is sent before the workflow is triggered
The table is supposed to display product photo, qty ordered and total price> However I’m having problems with displaying the details in the table
What exactly is the problem?
What is being output?
Unik_A:
The email was set to sent before this part is synced completely.
I don’t believe this is the problem here. “Sync” just means to send the newly-entered data to the spreadsheet, and subsequently retrieve any updated data from the spreadsheet from other users. The newly-entered data is in your instance of the app whether you sync or not, and a workflow triggered will have access to it.
@Unik_A This is happening because the Parent record is saved before all child records. You should have an additional column for example DateTime and then create an action to your Parent table. That action will write NOW() to your parent’s record and if you set that as an Event action on Parent_Form view, it will be triggered after all child records are saved.
Then you need to trigger the Workflow as “Updates_Only” with the condition rule AND(ISNOTBLANK([DateTime]),[_THISROW_BEFORE].[DateTime]<>[_THISROW_AFTER].[DateTime])