Concurrent
program cannot be deleted from Oracle Applications front-end, it can only be
disabled.
Try to
delete a concurrent program from Oracle Applications front-end:-
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNxKEaOvt4i0ZjWBG-U3AR-dsacYNO9I2g2cA_npAmU8rsNNDlhlIeiSmiRo_Nv8_zOw1PgOu2fafggyCrJOqbhAUZZYE1GyUEF_dHVJ1R-7feZW7QG-Er3bitx3DyL9gALmdbpCJi8q0/s1600/1.png)
Execute the
following database script using fnd_program.delete_program to
delete Concurrent program programmatically:-
BEGIN
FND_PROGRAM.DELETE_PROGRAM
(
PROGRAM_SHORT_NAME => 'XX_CP', -- CONC. EXECUTABLE SHORT NAME
APPLICATION => 'AR' -- PROGRAM APPLICATION SHORT NAME
);
COMMIT;
END;
After the
program deletion script is executed, try to query the Concurrent Program from
Oracle Applications front-end:-
Steps:- F11,
Enter Program: XX Concurrent Program, Ctrl + F11
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2EyfQ8YTp_ii4t56WIrCe5t4KjDQaBToSLnYao3g3d5lr_AtKXS3YKe9IuXittL9zrF1IbaJ3IM6i49Yacdhp4BJgfnsDi0UrbFt2HViEFl1MQ8orIHFQmTI8cIdql1DOXzbbRZ4kncY/s1600/2.png)
Note: - The
concurrent program is deleted
The
Concurrent executable can be deleted from the Oracle Applications front-end
after the associated Concurrent Program is deleted or it can be deleted by
using a database script:-
Press on
“Delete” icon and save to delete Concurrent executable:-
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiIO1t6OVejd-Sw2v3oU2Zy17jef1jzseHvprTNZr6xZZZY76othuHI9Ar0AObOq7ZfNwn5RdXm5-L2o7aqHNwjPC64-RGCciXjBc3vxY3jAoFhnKC6d_rGk7OCSoWkND9k091cosXxgwU/s1600/3.png)
Following
database script using fnd_program.delete_executable can
be used to delete Concurrent executable programmatically:-
BEGIN
FND_PROGRAM.DELETE_EXECUTABLE
(
EXECUTABLE_SHORT_NAME => 'XX_EXEC', -- CONC. EXECUTABLE SHORT NAME
APPLICATION => 'AR' -- PROGRAM APPLICATION SHORT NAME
);
COMMIT;
END;
BEGIN
FND_PROGRAM.DELETE_EXECUTABLE
(
EXECUTABLE_SHORT_NAME => 'XX_EXEC', -- CONC. EXECUTABLE SHORT NAME
APPLICATION => 'AR' -- PROGRAM APPLICATION SHORT NAME
);
COMMIT;
END;
After the
executable deletion script is executed in the database, try to query the
Concurrent Program from Oracle Applications front-end:-
Steps:- F11,
Enter Executable: XX_EXEC, Ctrl + F11
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKgadQpix4UJKKUbRaIEPq6OSVL7MdkYN7DxflLtL3uUgrPhPND3PBy5ceeBbtoJbzRM-FxTVbYTC9-7oYMVNofVhIO_hSN0F0K2L_k4I4KDryCS5l-tyC5fM3FV4cHifruwq298aDQhI/s1600/4.png)
Note: - The
concurrent executable is deleted