Hi @MaryMThompson ,
Could you please share a bit more about your scenario?
Could you please show more details about the "Pending General Journal" that you mentioned?
Further, do you want to write data back into your Business Central table using PowerApps app?
If you want to write data back into your Business Central table using PowerApps app, here are the solutions:
1. Generate an app based on your Business Central table, then it would generate three screens -- BrowseScreen, DetailScreen and EditScreen.
Within the Edit screen, you could save data back to your Business Central table through the Edit form.
Please check the following blog or video for more details:
https://community.dynamics.com/nav/b/arounddynamicsnavworld/posts/powerapps-integration-with-microsoft-dynamics-365-business-central-online
https://www.youtube.com/watch?v=HKT6OsH2SXw
2. If you want to write data back to another Business Central table from an app, I think the Patch function could achieve your needs. Please set the OnSelect property of the "Submit" button to following formula:
Patch( /* <-- Add new records into your Business Central Table */
'Your Business Central Table',
Defaults('Your Business Central Table'),
{
Column1: "Xxxx",
Column2: "xxxx",
Column3: "xxx",
...
}
)
Patch( /* <-- Edit an existing record within your Business Central Table */
'Your Business Central Table',
LookUp('Your Business Central Table', PrimaryColumn = "A specific value"), /* <-- Find the record you want to update */
{
Column1: "Xxxx",
Column2: "xxxx",
Column3: "xxx",
...
}
)
More details about the Patch function, please check the following article:
Patch function
Best regards,