Removing OA Framework Extended VO substitutions
it is possible to substitute a VO definition.
however, are not shown on the personalization catalog available under the System Administration responsibility and thus are not easily disabled in case something is wrong with them.
In order to remove the substitution definition, you have to identify the customization path and then use the jdr API to remove it.
In order to identify the customization, use the following call:
In order to remove the substitution definition, you have to identify the customization path and then use the jdr API to remove it.
In order to identify the customization, use the following call:
BEGIN
jdr_utils.listdocuments ('/oracle/apps/ar/cusstd/srch/webui/ArPrtySrchPG', TRUE);
END;
/
It will output the path of the customization, which is the one to remove.
/oracle/apps/ce/bankaccount/server/customizations/site/0/AccountSimpleVO
In order to delete the customization definition, use the following call, using the output from the previous command as a parameter.
execute jdr_utils.deletedocument('/oracle/apps/ar/hz/.....full path');
You will get the following message if everything is ok, otherwise you could get an error if document is not found in case you did not properly copy the path or if you execute the command a second time.
Successfully deleted document
/oracle/apps/ar/hz/components/v2search/server/customizations/site/0/
Post a Comment