Thursday, May 5, 2011

FND_PROGRAM : Delete Concurrent Program Definition via API


Test Instance: R12.1.1
Script:

DECLARE
   v_program_short_name   VARCHAR2 (200);
   v_application          VARCHAR2 (200);
BEGIN
   v_program_short_name := 'XX_SHAREORACLEAPPS';
   v_application        := 'Payables';
   apps.fnd_program.delete_program
               (program_short_name      => v_program_short_name,
                application             => v_application
               );
   COMMIT;
END;



0 Responses to “FND_PROGRAM : Delete Concurrent Program Definition via API”

Post a Comment

Disclaimer

The ideas, thoughts and concepts expressed here are my own. They, in no way reflect those of my employer or any other organization/client that I am associated. The articles presented doesn't imply to any particular organization or client and are meant only for knowledge Sharing purpose. The articles can't be reproduced or copied without the Owner's knowledge or permission.