PL-SQL to delete Concurrent Program and Executable

By Amol Jadhav

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

SQL Querysql
1BEGIN
2   fnd_program.delete_program ('SHORTNAME', 'Application Name');
3
4   fnd_program.delete_executable ('SHORTNAME', 'Application Name');
5END;

Example:

SQL Querysql
1BEGIN
2   fnd_program.delete_program ('XXTESTCP', 'Payables');
3
4   fnd_program.delete_executable ('XXTESTEXE', 'Payables');
5END;

Related posts: