HOW TO attach concurrent program to a request group in oracle apps

API to attach concurrent program to a request group in Oracle Apps R12

API: FND_PROGRAM.add_to_group

Request group and data group are used while defining a responsibility in Oracle apps. A request group is attached to a responsibility. It defines the concurrent programs you can execute using the responsibility to which this request group is attached.


BEGIN
  FND_PROGRAM.add_to_group('XXFINTSTCPDB',      -- Concurrent Program Short Name
                'XXFIN' ,         -- Application Short Name
                 'All Reports',        -- Report Group Name
                'SQLAP');          -- Report Group Application
  COMMIT;
END;
/

Comments

Popular posts from this blog

HOW TO auto approve workflow WF notification procedure

HOW TO register table in oracle apps

HOW TO update an existing user in oracle apps