Hi @jaimiehaake1999 ,
Could you please share a bit more about the LookUp field in your Phone Call Entity?
Do you embed an canvas app based on the LookUp filed in your Phone Call Form?
Further, do you want the embedded app to display the Detail Form/Edit form of the corresponding Company Info (The Company record the LookUp field of the current record related to)?
I have made a test on my side, please consider take a try with the following workaround:
1. Edit your embedded canvas app
2. Set the OnStart property of the App control to following:
Navigate(DetailScreen) /* <-- Or type Navigate(EditScreen)*/
3. Set the Item property of the Detail form or Edit form to following:
LookUp('YourCompanyEntity', 'Unique Identifier Column' = [@ModelDrivenFormIntegration].Item.'LookUpField'.'Unique Identifier Column')
Note: I assume that the 'LookUpField' references values from your 'YourCompanyEntity'. The 'Unique Identifier Column' represents the Unique Identifier column in your 'YourCompanyEntity' CDS Entity.
Or type following:
LookUp('YourCompanyEntity', 'Unique Identifier Column' = First([@ModelDrivenFormIntegration].Data).'LookUpField'.'Unique Identifier Column')
Please consider take a try with above solution, check if the issue is solved.
Best regards,