DECLARE
v_executable_short_name VARCHAR2 (200);
v_application VARCHAR2 (200);
BEGIN
v_executable_short_name := 'XX_SHARTNAME'; /*Concurrent Program Short Name*/
v_application := 'Payables';
apps.fnd_program.delete_executable
(executable_short_name => v_executable_short_name,
application => v_application
);
COMMIT;
END;
No comments:
Post a Comment