Purging Oracle Workflow from the Database
To purge the workflow from the Oracle Database, we need to use the standard workflow purge sql file provided by Oracle. The file is located under the FND_TOP/sql folder.
The file name is wfrmitt.sql
Connect to the server. Connect to the sqlplus session as apps/*****.
Execute the above mentioned file
sql> @wfrmitt.sql
sql> @FND_TOP/sql/wfrmitt.sql
Will list all the item types. Will ask for the item type that needs to be purged.
XXXXXX (item type)
The workflow will be purged and all the activity information, error information will be purged. The child workflow (WF_ERRORS) for the workflow wont be purged. That would be a pre requisite for this activity.
The file name is wfrmitt.sql
Connect to the server. Connect to the sqlplus session as apps/*****.
Execute the above mentioned file
sql> @wfrmitt.sql
sql> @FND_TOP/sql/wfrmitt.sql
Will list all the item types. Will ask for the item type that needs to be purged.
XXXXXX (item type)
The workflow will be purged and all the activity information, error information will be purged. The child workflow (WF_ERRORS) for the workflow wont be purged. That would be a pre requisite for this activity.
Comments
Post a Comment