Showing posts with label Script to delete the concurrent program from Oracle. Show all posts
Showing posts with label Script to delete the concurrent program from Oracle. Show all posts

Thursday, 21 April 2011

Script to delete the concurrent program from Oracle


Script to delete the concurrent program from Oracle


Begin
fnd_program.delete_program('program short name','schema');
fnd_program.delete_executable('program short name','schema');
commit;
End;

Thursday, 7 April 2011

Script to delete the concurrent program from Oracle


 Script to delete the concurrent program from Oracle

Begin
fnd_program.delete_program('program short name','schema');
fnd_program.delete_executable('program short name','schema');
commit;
End;