Through the Application front end, we cannot delete a concurrent program, You can either enable or disable a concurrent program.
But from the backend, we can delete it using fnd_program.
begin
fnd_program.delete_program('PROGRAM_SHORT_NAME','Application Name');
fnd_program.delete_executable('EXECUTABLE_SHORT_NAME','Application Name');
end;
Comments
Post a Comment