Resolution | - From Manage Sub-Forms, hover the mouse over the Sub-Form Name.
- In the bottom-right corner, the Id will be shown.
- Run the following SQL query against the Instance database to confirm the status_id value after replacing ### with the number from step 2.
SELECT status_id, * FROM tblModule WHERE module_id = ### - If the status_id value is set to 0 (which is Development), then this confirms the issue.
- To fix, run the following SQL query against the Instance database after replacing ### with the number from step 2.
UPDATE tblModule SET status_id = 1 WHERE module_id = ###
|