Sie sind auf Seite 1von 7

D o you  w an t to meet you r fellow  Oracle A p p s  C on s u ltan ts  ??

 th en  join  u s  @ Faceb ook

Home
About Me: Shailender Thallam
Contact
Oracle Apps Interview Questions
Ask a Question

Search the archive...
Home » AOL and SYSADMIN, AOL SQL Scripts

PL/SQL Script to Add a Concurrent Program to a Request Group
from backend
9 May 2013 1,609 views 0 Comments Article by Shailender Thallam

We can not only create a concurrent program from backend but also assign the concurrent program to a
Request Group by FND_PROGRAM.ADD_TO_GROUP api, below is the sample script.

Adding a Concurrent Program to Request Group from backend:
/*********************************************************
*PURPOSE: To Add a Concurrent Program to a Request Group *
*         from backend                                   *
*AUTHOR: Shailender Thallam                              *
**********************************************************/
­­
DECLARE
  l_program_short_name  VARCHAR2 (200);
  l_program_application VARCHAR2 (200);
  l_request_group       VARCHAR2 (200);
  l_group_application   VARCHAR2 (200);
  l_check               VARCHAR2 (2);
  ­­
BEGIN
  ­­
  l_program_short_name  := 'XX_ORACLEAPPSDNA_CP';
  l_program_application := 'CUSTOM Custom';
  l_request_group       := 'System Administrator Reports';
  l_group_application   := 'Application Object Library';
  ­­
  ­­Calling API to assign concurrent program to a reqest group
  ­­
   apps.fnd_program.add_to_group (program_short_name  => l_program_short_name,
                                  program_application => l_program_application,
                                  request_group       => l_request_group,
                                  group_application   => l_group_application                            
                                 );  
  ­­
  COMMIT;
  ­­
  BEGIN
    ­­
    ­­To check whether a paramter is assigned to a Concurrent Program or not
    ­­
     SELECT 'Y'
       INTO l_check
       FROM fnd_request_groups frg,
      fnd_request_group_units frgu,
      fnd_concurrent_programs fcp
      WHERE frg.request_group_id    = frgu.request_group_id
    AND frg.application_id          = frgu.application_id
    AND frgu.request_unit_id        = fcp.concurrent_program_id
    AND frgu.unit_application_id    = fcp.application_id
    AND fcp.concurrent_program_name = 'XX_ORACLEAPPSDNA_CP';
    ­­
    dbms_output.put_line ('Adding Concurrent Program to Request Group Succeeded');
    ­­
  EXCEPTION
  WHEN no_data_found THEN
    dbms_output.put_line ('Adding Concurrent Program to Request Group Failed');
  END;
END;

View from front end application:
For Further Reading

1.  PL/SQL Script to Create a Concurrent Program Parameter from backend
2.  SQL Query to list all Oracle Reports assigned to a Responsibility
3.  PL/SQL Script to Create a Concurrent Program from backend
4.  SQL Query to list out Responsibilities assigned to a Request Group
5.  SQL Query to findout Executable, Concurrent Program and its Parameters information

WOW! Did you like this post? We'll send more interesting posts like PL/SQL Script to Add a
Concurrent Program to a Request Group from backend to you!
Enter your Email Address:
Enter your email address   Subscribe Me!
0 Comments OracleAppsDNA 
1  Login

  Recommend ⤤ Share Sort by Oldest

Start the discussion…

Be the first to comment.

✉ Subscribe d Add Disqus to your site  Privacy

Recent Posts
Interview Questions with Answers on Basics of Oracle Apps
Top AOL and Sysadmin Interview Questions with Answers
Different Headers and Footers for Different pages of XMLP Layout
FAQs on PO Output for Communication Report
Error(X,X): class xx.oracle.apps.fnd.emp.schema.server.XXEmpSearchEOImpl should be declared
abstract; it does not define method setLastUpdateLogin(oracle.jbo.domain.Number) of class
oracle.apps.fnd.framework.server.OAEntityImpl
CallableStatement: Calling PL/SQL Procedure from OAF
RowSetIterator in OAF: Usage of Row Set Iterator to Traverse VO Rows
OPM Quality: API to create Samples and Add Test Results to Samples
OPM Quality – Query to List Test Codes Information
OPM Quality – Query to List Specification and Tests Information
OPM Quality – Query to List Samples Information
How to Close Approval or Response Required based Notifications from backend?

STAY CONNECTED

Subscribe FREE updates on your Email | RSS

Enter your email address Subscribe

My Sponsers~!

Recent Posts from this Category

 Interview Questions with Answers on Basics of Oracle Apps
 Top AOL and Sysadmin Interview Questions with Answers
 Different Headers and Footers for Different pages of XMLP Layout
 FAQs on PO Output for Communication Report
 Error(X,X): class xx.oracle.apps.fnd.emp.schema.server.XXEmpSearchEOImpl should be declared
abstract; it does not define method setLastUpdateLogin(oracle.jbo.domain.Number) of class
oracle.apps.fnd.framework.server.OAEntityImpl
 CallableStatement: Calling PL/SQL Procedure from OAF
 RowSetIterator in OAF: Usage of Row Set Iterator to Traverse VO Rows
 OPM Quality: API to create Samples and Add Test Results to Samples
 OPM Quality – Query to List Test Codes Information
 OPM Quality – Query to List Specification and Tests Information

Tag Cloud

back to back order  concurrent manager  Cost Manager  Diagnostics dropshipment Errbuf  FNDLOAD  FNDLOAD download


FNDLOAD upload FND_DEVELOPER_MODE  FND_DEVELOPER_MODE in routine

fnd_request.submit_request  How to port reports from one instance to another  HRMS Profile Options iStore


items not available ldt files Line Status Flow MOAC Move Transaction Manager  O2C Cycle Oracle Logo Pending Resource Transactions personalization
pl/sql procedures porting reports profileoption Profile options Reports Retcode Sales Order line Status Flow Ship Confirm button greyed Shipping
Transactions form table suffix WIP_COST_TXN_INTERFACE  _A _ACN _ALL  _AVN _B _F _S _TL  _V _VL

COPYRIGHT

This work is licensed under a Creative Commons­NonCommercial 2.5 License.

Categories
Alerts (1)
AOL and SYSADMIN (29)
AOL SQL Scripts (20)
APIs (3)
Business Events (2)
Custom PLL (1)
HRMS (4)
Interview Questions (7)
Inventory (7)
iRecruitment (1)
iStore (1)
OAF (8)
OPM (4)
Oracle Apps Basics (18)
Oracle Learning Management (4)
Oracle SQL (13)
Order Management (11)
Personalizations (4)
PL/SQL (11)
Profile Options (5)
Purchasing (4)
Receivables (1)
Reports (2)
Security (1)
Shipping Execution (2)
Unix / Shell Scripts (1)
WIP Jobs (1)
Workflows (13)
XMLP (11)

Recent Posts
Interview Questions with Answers on Basics of Oracle Apps
Top AOL and Sysadmin Interview Questions with Answers
Different Headers and Footers for Different pages of XMLP Layout
FAQs on PO Output for Communication Report
Error(X,X): class xx.oracle.apps.fnd.emp.schema.server.XXEmpSearchEOImpl should be declared
abstract; it does not define method setLastUpdateLogin(oracle.jbo.domain.Number) of class
oracle.apps.fnd.framework.server.OAEntityImpl
CallableStatement: Calling PL/SQL Procedure from OAF
RowSetIterator in OAF: Usage of Row Set Iterator to Traverse VO Rows
OPM Quality: API to create Samples and Add Test Results to Samples
OPM Quality – Query to List Test Codes Information
OPM Quality – Query to List Specification and Tests Information

Most Viewed

[Decrypting User Password]How to find password of a User in Oracle Apps R12? ­ 13,349 views
Top PL/SQL Interview Questions with Answers ­ 9,588 views
SQL Query to list Active Responsibilities of a Active User ­ 9,442 views
Useful Information about Workflow Background Process Concurrent Program ­ 9,328 views
How costing is performed on Inventory Material Transactions ­ 8,504 views
Information about Oracle APIs and How to find APIs of Oracle Modules? ­ 8,337 views
Order to Cash Technical Flow ­ 7,993 views
Purpose of Formula column, Summary column and Place Holder column in Oracle Reports ­ 7,942
views
PL/SQL Script to Submit a Concurrent Request from backend ­ 5,928 views
RICE, CEMLI Terminology in Oracle Apps ­ 5,919 views

Recent Comments

Recent Comments

 Roopa

Hi Shailender, Thanks for your reply. I am trying update trhough API,getting below error
ErrorORA­20001: FLEX­SSV UNSUPPORTED VDATION: N, VSNAME,
XX_LIFE_NUMBER_VS(Value set name). Any help on...

Making a DFF Segment read only through ‘Special’ type of Value Set · 1 month ago

 Shailender Thallam

@Roopa

Yes! you can update the attribute either using API or with direct update statement from backend.

Thanks,

Shailender

Making a DFF Segment read only through ‘Special’ type of Value Set · 1 month ago

 Roopa

Hi Shailender,
After makeing sepcific DFF segnment read only. Can we update from backend through API. 
Thanks,
Roopa

Making a DFF Segment read only through ‘Special’ type of Value Set · 1 month ago

 Nd nj.

This is an excellent and very easy to use scripts! wow! it works like magic. I was so surprised to see
the results.

[Decrypting User Password]How to find password of a User in Oracle Apps R12? · 2 months ago

OracleAppsDNA

© 2014 OracleAppsDNA. Opinions expressed here are strictly those of the owner,
Shailender Thallam, and those of the commenters. Articles cannot be reproduced
without permission from the author.

Das könnte Ihnen auch gefallen