Friday 27 March 2015

Oracle Apps: How to delete a concurrent program in Oracle eBusiness

You cannot delete a concurrent program from the front-end. You can only disable it.


If you want to delete the concurrent program and the executable (if needed) programatically using the below code.

 begin  
 fnd_program.delete_program('CONC_PROG_SHORT_NAME'  
                         ,'APPLICATION_SHORT_NAME');  
 fnd_program.delete_executable('EXECUTABLE_SHORT_NAME'  
                           ,'APPLICATION_SHORT_NAME');  
 COMMIT;  
 end;   

Feel free to point out if anything is missing/wrong in this blog.

No comments:

Post a Comment