Sign Up to our social questions and Answers to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers to ask questions, answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
How to delete concurrent program in oracle apps from front end ?
Hi Maram, You can`t delete by the front end, but by the back end; The API call to delete Concurrent Program fnd_program.delete_program (l_prog_short_name, l_appl_full_name); The API call to delete Executable fnd_program.delete_executable (l_exec_short_name, l_appl_full_name);
Hi Maram,
You can`t delete by the front end, but by the back end;
The API call to delete Concurrent Program
fnd_program.delete_program (l_prog_short_name, l_appl_full_name);
The API call to delete Executable
fnd_program.delete_executable (l_exec_short_name, l_appl_full_name);
See less