Hi,
For background, I inherited a solution with model driven app and I am not very clear on the history of the solution.
The app has a custom button on command bar to update a column (Column A) in dataverse.
in DEV:
- Dataverse column name: Column A
- Formula in the button: Update Column A
- Main form shows Column A correctly
- App Last Modified 4 days ago
in PROD (deployed using pipeline):
- Dataverse column name: Column A
- Formula in the button: Update Column B (no column B in dataverse table, but no error)
- Main form shows Column A correctly
- App Last Modified 1 year ago (after deployment)
Issue:
- PROD: Button runs but no column was updated (because column B doesnt exist?)
- DEV: Button runs and column A was updated successfully
- PROD: Update button formula from Column B (no intellisense error) to Column A (intellisense error, ie. column not found)
- PROD: App shows "Last modified" as 1 year ago, should be recently
- It is possible someone make changes in PROD in the past without going through pipeline but cannot be confirmed
Troubleshooting done so far (not in order):
- PROD: Update button formula from Column B (no intellisense error) to Column A (intellisense error, ie. column not found)
- PROD: Remove unmanaged app layer
- PROD: Publish all customisations after deployment
- PROD: Add dummy button to update Column A but also error (intellisense error, ie. column not found)
- PROD: Add dummy button to refresh the table (ie. Refresh(table_name)), runs with no error
- DEV: Publish all customisations before deployment
- DEV: Save and publish button formula before deployment
Appreciate any help. Thank you.