How can we delete a Concurrent Program which is already registered?

Showing Answers 1 - 30 of 30 Answers

Kiran

  • May 23rd, 2007
 

You can either enable or disable a concurrent program.

Can't delete them.

Temp123

  • Jul 8th, 2008
 

Through the Application Front end its not possible to delete CP. But from backend we can delete it.

TO DELETE CONCURRENT PROGRAM
---------------------------------------------

begin
fnd_program.delete_program('SHORTNAME','APPLICATION');
fnd_program.delete_executable('SHORTNAME','APPLICATION');
end;

sunilkaswan

  • Aug 20th, 2011
 

From front end we can not delete the concurrent program. We can only enable or disable the program.
We can delete the concurrent program from back end.

fnd_program.delete_program('Short Name', 'Application');
fnd_program.delete_executable('Short Name', 'Application');

Regards,

Sunil Kaswan

  Was this answer useful?  Yes

Lakshmi L

  • Feb 1st, 2013
 

We can delete the Concurrent Program from Back End.

begin
FND_PROGRAM.delete_executable(executable_short_name=>xxexe,application=>XXMZ Custom);
commit;
end;

begin
FND_PROGRAM.DELETE_PROGRAM(program_short_name=>XXCONC,application=>XXMZ Custom);
commit;
end;

  Was this answer useful?  Yes

Guru

  • Jul 15th, 2015
 

There is another way for doing this
FND_PROGRAM.EXECUTABLE_EXITS

  Was this answer useful?  Yes

Deena Yeluri

  • Jul 10th, 2016
 

There is no option to delete a concurrent program in Oracle EBS, instead there is an option to enable or disable a concurrent program by checking or un-checking checkbox.

  Was this answer useful?  Yes

Govind Palariya

  • Nov 24th, 2016
 

Concurrent program can deleted from back end.
Begin
fnd_program.delete_program(program short name,schema);
fnd_program.delete_executable(program short name,schema);
commit;
End;

  Was this answer useful?  Yes

Deepak

  • Jul 3rd, 2017
 

Hi,
We can delete concurrent program name from back end with below command.
begin
FND_PROGRAM.DELETE_PROGRAM(XXA_PO_BRANDING_COST,Purchasing );
end;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions