PL-SQL to delete Concurrent Program and Executable

PL-SQL to delete Concurrent Program and Executable
How to delete Concurrent Program and Executable in Oracle Apps EBS
Delete concurrent program

BEGIN
   fnd_program.delete_program ('SHORTNAME', 'Application Name');

   fnd_program.delete_executable ('SHORTNAME', 'Application Name');
END;

Example:

BEGIN
   fnd_program.delete_program ('XXTESTCP', 'Payables');

   fnd_program.delete_executable ('XXTESTEXE', 'Payables');
END;
Related posts: Upload your own post and refer it anywhere anytime:

Leave a Reply