Thursday, May 5, 2011
FND_PROGRAM : Remove Concurrent Program from Request Group via API
Test Instance: R12.1.1
Script:
/* Formatted on 2011/05/05 12:54 (Formatter Plus v4.8.5) */
DECLARE
v_program_short_name VARCHAR2 (200);
v_program_application VARCHAR2 (200);
v_request_group VARCHAR2 (200);
v_group_application VARCHAR2 (200);
BEGIN
v_program_short_name := 'XX_SHAREORACLEAPPS';
v_program_application := 'Payables';
v_request_group := 'All Reports';
v_group_application := 'Assets';
apps.fnd_program.remove_from_group
(program_short_name => v_program_short_name,
program_application => v_program_application,
request_group => v_request_group,
group_application => v_group_application
);
COMMIT;
END;
Do you think this Article is useful?
Subscribe to:
Post Comments (Atom)
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.
0 Responses to “FND_PROGRAM : Remove Concurrent Program from Request Group via API”
Post a Comment