Thursday, May 5, 2011

FND_PROGRAM : Delete Concurrent Program Parameter via API


Test Instance: R12.1.1
Script:
/* Formatted on 2011/05/05 12:50 (Formatter Plus v4.8.5) */
DECLARE
   v_program_short_name   VARCHAR2 (200);
   v_application          VARCHAR2 (200);
   v_parameter            VARCHAR2 (200);
BEGIN
   v_program_short_name := 'XX_SHAREORACLEAPPS';
   v_application        := 'Payables';
   v_parameter          := 'User ID';
   apps.fnd_program.DELETE_PARAMETER
                   (program_short_name      => v_program_short_name,
                    application             => v_application,
                    parameter               => v_parameter
                   );
   COMMIT;
END;



0 Responses to “FND_PROGRAM : Delete Concurrent Program Parameter 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.