Anda di halaman 1dari 9

Articles in the AOL and SYSADMIN Category AOL and SYSADMIN, Oracle Apps Basics How to get Concurrent

t Request ID of a parent program in a child program of a Req uest Set? [ 12 Aug 2013 | 0 Comments | 0 views] Upon a requirement I have created a request set with multiple programs in it. I was in a need to pull request ID of the first program in the request of the seco nd program. I tried to figure out if there are any options within concurrent pro gram definitions but I couldn t find any, so I [...] AOL and SYSADMIN, AOL SQL Scripts PL/SQL script to find Blocking Sessions/Objects and to Kill them [ 9 Jul 2013 | 0 Comments | 0 views] /********************************************************* *PURPOSE: To findout blocking sessions and kill them * *AUTHOR: Shailender Thallam * **************** ******************************************/ DECLARE CURSOR c IS SELECT c.owner, c.object_name, c.object_type, b.SID , b.serial# , b.STATUS , b.osuser , b.machin e FROM v$locked_object a, v$session b , dba_objects c WHERE b.SID = a.session_id AND a.object_id = c.object_id AND b.osuser = shailender.thallam and c.object_name [ ...] AOL SQL Scripts, XMLP How to submitt XMLP Report using a PL/SQL Script [ 3 Jul 2013 | 0 Comments | 0 views] Generally we use FND_REQUEST.SUBMIT_REQUEST to submit a concurrent program using a PL/SQL script. But we can not attach a layout to the concurrent request using the above said API. We can attach a layout to the concurrent request by using a nother procedure ADD_LAYOUT which belongs to the same package FND_REQUEST Below is the signature of [...] AOL and SYSADMIN, AOL SQL Scripts PL/SQL Script to Submit a Concurrent Request form backend [ 26 Jun 2013 | 0 Comments | 27 views] We can submit a concurrent request from backend using fnd_request.submit_request API. Before submitting the API we need to set the environment context using fnd _global.apps_initialize /******************************************************* ** *PURPOSE: To Submit a Concurrent Request form backend * *AUTHOR: Shailender T hallam * **********************************************************/ DECLARE l_r esponsibility_id NUMBER; l_application_id NUMBER; l_user_id NUMBER; l_request_id NUMBER; BEGIN SELECT DISTINCT fr.responsibility_id, frx.application_id [...] AOL and SYSADMIN, AOL SQL Scripts PL/SQL Script to Add a Concurrent Program to a Request Group from backend [ 9 May 2013 | 0 Comments | 82 views] ConcurrentProgram_Assigned_to_RequestGroup_from_Application We can not only create a concurrent program from backend but also assign the con current 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 Concurr ent Program to a Request Group * * from backend * *AUTHOR: Shailender [...] AOL and SYSADMIN, AOL SQL Scripts PL/SQL Script to Create a Concurrent Program Parameter from backend [ 9 May 2013 | 0 Comments | 73 views] ConcurrentProgram_Paramter_from_Application We need to use FND_PROGRAM.PARAMETER api to create an concurrent program paramet er from backend database, below is the sample script. Creating the Concurrent Pr

ogram Parameter from backend: /************************************************* *************** *PURPOSE: To Create a Concurrent Program Parameter from backend * *AUTHOR: Shailender Thallam * ************************************************ *****************/ DECLARE l_program_short_name VARCHAR2 (200); l_application VA RCHAR2 (200); l_sequence NUMBER; l_parameter [...] AOL and SYSADMIN, AOL SQL Scripts PL/SQL Script to Create a Concurrent Program from backend [ 9 May 2013 | 0 Comments | 79 views] ConcurrentProgram_from_Application We need to use FND_PROGRAM.REGISTER api to create an concurrent program from bac kend database, below is the sample script. Creating the Concurrent Program from backend: /****************************************************** *PURPOSE: To Cr eate a Concurrent Program from backend * *AUTHOR: Shailender Thallam * ********* **********************************************/ DECLARE l_program VARCHAR2 (200) ; l_application VARCHAR2 (200); l_enabled VARCHAR2 (200); l_short_name VARCHAR2 (200); [...] AOL and SYSADMIN, AOL SQL Scripts PL/SQL Script to Create an Executable from backend [ 1 May 2013 | 0 Comments | 86 views] Executable_from_Application We need to use FND_PROGRAM.EXECUTABLE api to create an executable from backend d atabase, below is the sample script. Creating the Executable from backed: /***** ********************************************* *PURPOSE: To Create an Executable from backend * *AUTHOR: Shailender Thallam * *********************************** ****************/ DECLARE l_executable VARCHAR2 (200); l_application VARCHAR2 (2 00); l_short_name VARCHAR2 (200); l_description VARCHAR2 (200); l_execution_meth od VARCHAR2 (200); [...] AOL SQL Scripts SQL Query to findout Application Tops unix physical path [ 12 Mar 2013 | 0 Comments | 114 views] /********************************************************* *PURPOSE: To list phy sical path of APPL_TOPs in unix * * and its Parameters * *AUTHOR: Shailender Tha llam * **********************************************************/ SELECT variab le_name, VALUE FROM fnd_env_context WHERE variable_name LIKE %\_TOP ESCAPE \ AND con current_process_id = (SELECT MAX(concurrent_process_id) FROM fnd_env_context ) O RDER BY 1; AOL SQL Scripts SQL Query to findout Executable, Concurrent Program and its Parameters informati on [ 12 Mar 2013 | 0 Comments | 151 views] /******************************************************************** *PURPOSE: To list information about Executable, Concurrent Program * * and its Parameters * *AUTHOR: Shailender Thallam * ************************************************ *********************/ SELECT DISTINCT fcpl.user_concurrent_program_name "Conc urrent Program Name", fcp.concurrent_program_name "Short Name" , fat.application _name , fl.meaning execution_method , fe.execution_file_name , fcp.output_file_t ype , fdfcuv.column_seq_num "Column Seq Number" , fdfcuv.end_user_column_name "P arameter Name" , fdfcuv.form_left_prompt "Prompt" , fdfcuv.enabled_flag " Enable d [...] AOL and SYSADMIN, XMLP How to Delete XML Publisher Definition and Template [ 11 Mar 2013 | 0 Comments | 260 views] Some times we might end up in a situation to delete Data Definition and Template but interestingly oracle doesn t provide the option to delete.. As a techie we ca n achieve this from back end, here is a method to delete Data Definition and Tem

plate from back end. SET SERVEROUTPUT ON DECLARE AOL and SYSADMIN To Findout Oracle Application URL from Database [ 11 Mar 2013 | 0 Comments | 142 views]

Change the [...]

ICX_PARAMETERS table helps us to find out the application URL. SELECT home_url F ROM icx_parameters; We can also get the application URL from profile option Appli cation Framework Agent which provides the host name and port number. SELECT profi le_option_value FROM fnd_profile_option_values WHERE profile_option_id = (SELECT profile_option_id FROM fnd_profile_options WHERE profile_option_name = APPS_FRAME WORK_AGENT ) AND level_value=0; Oracle redirects to [...] AOL and SYSADMIN How to find report/package file version in Oracle Apps [ 17 Jan 2013 | 0 Comments | 191 views] Method I : ADIDENT utility To find out a file version, oracle have provided ADIDENT utility (AD Identification). This is an oracle apps based utility. Syntax:- adid ent Header <file_name> Eg:- adident Header OEXWFASG.rdf Method II : Strings utility Strings is a UNIX based utility which is used to print the strings of printabl e characters in files. [...] Next Page Recent Posts SQL Tuning or SQL Optimization How to get Concurrent Request ID of a parent program in a child program of a Request Set? PL/SQL script to find Blocking Sessions/Objects and to Kill them How to Display Leading Zeros in XMLP Report Excel Output PL/SQL Script to Generate XML Tags for XMLP Report API to Purge/Delete Employee from HRMS application How to submitt XMLP Report using a PL/SQL Script Global Temporary Tables in Oracle How to use DML Statements in a Function PL/SQL Script to Submit a Concurrent Request form backend FAQs on Oracle Alerts PL/SQL Script to Add a Concurrent Program to a Request Group from backend STAY CONNECTED Join us at Facebook Subscribe FREE updates on your Email | RSS My Sponsers~! Recent Posts from this Category How to get Concurrent Request ID of a parent program in a child program of a Request Set? PL/SQL script to find Blocking Sessions/Objects and to Kill them How to submitt XMLP Report using a PL/SQL Script PL/SQL Script to Submit a Concurrent Request form backend PL/SQL Script to Add a Concurrent Program to a Request Group from backend PL/SQL Script to Create a Concurrent Program Parameter from backend PL/SQL Script to Create a Concurrent Program from backend PL/SQL Script to Create an Executable from backend SQL Query to findout Application Tops unix physical path SQL Query to findout Executable, Concurrent Program and its Parameters infor mation Tag Cloud back to back order concurrent manager Cost Manager Diagnostics dropshipment Errb

uf FNDLOAD FNDLOAD download FNDLOAD upload FND_DEVELOPER_MODE FND_DEVELOPER_MODE in routine How to port reports from one instance to another HRMS Profile Option s iStore items not available ldt files Line Status Flow MOAC Move Transaction Ma nager O2C Cycle Oracle Logo Oracle Reports Pending Resource Transactions persona lization pl/sql procedures porting reports profileoption Profile options Retcode RICE Sales Order line Status Flow Ship Confirm button greyed Shipping Transacti ons form table suffix WIP_COST_TXN_INTERFACE _A _ACN _ALL _AVN _B _F _S _TL _V _ VL Categories AOL and SYSADMIN (20) AOL SQL Scripts (17) HRMS (2) iRecruitment (1) iStore (1) OAF (1) Oracle Alerts (1) Oracle APIs (2) Oracle Apps Basics (5) Oracle HRMS (2) Oracle Inventory (3) Oracle Learning Management (4) Oracle PL/SQL (6) Oracle Purchasing (2) Oracle Receivables (1) Oracle Reports (2) Oracle SQL (9) Oracle Workflows (5) Order Management (11) Personalizations (4) Profile Options (5) Security (1) Shipping Execution (2) WIP Jobs (1) XMLP (5) COPYRIGHT This work is licensed under a Creative Commons-NonCommercial 2.5 License. Recent Comments santhosh no ...before pick confirm i.e pick realese its possible . Sales Order Line Status Flow 2 weeks ago santhosh awesome ..........good work Useful Information about Workflow Background Process Concurrent Program 2 we eks ago sekar GOOD DOCUMENTS THANKS A LOT Workflow Email Notifications not working for a particular user 2 months ago Shailender Thallam Hello Mahesh,

I'm sorry, I don't have much knowledge on P2P cycle. About Me 3 months ago Mahesh Kumar Hi Shailender. Can you post an article on P2P Cycle similar to "Back to Back Order Function al and Technical Flow" in r12 Context? Thank you. About Me 3 months ago Powered by Disqus Recent Posts SQL Tuning or SQL Optimization How to get Concurrent Request ID of a parent program in a child program of a Request Set? PL/SQL script to find Blocking Sessions/Objects and to Kill them How to Display Leading Zeros in XMLP Report Excel Output PL/SQL Script to Generate XML Tags for XMLP Report API to Purge/Delete Employee from HRMS application How to submitt XMLP Report using a PL/SQL Script Global Temporary Tables in Oracle How to use DML Statements in a Function PL/SQL Script to Submit a Concurrent Request form backend Most Viewed [Decrypting User Password]How to find password of a User in Oracle Apps R12? - 7,509 views Order to Cash Technical Flow - 5,751 views SQL Query to list Active Responsibilities of a Active User - 5,418 views Useful Information about Workflow Background Process Concurrent Program - 4, 939 views How costing is performed on Inventory Material Transactions - 4,576 views Information about Oracle APIs and How to find APIs of Oracle Modules? - 3,61 3 views Sales Order Line Status Flow - 3,427 views Information on Errbuf and Retcode Parameters - 2,831 views Reasons for a Sales Order to get Backordered! - 2,812 views Purpose of Formula column, Summary column and Place Holder column in Oracle Reports - 2,731 views About Author Shailender Thallam More about me OracleAppsDNA Basics Concepts of Oracle Learning Management(OLM) Part I 21 June 2012 1,650 views No Comment Article by Shailender Thallam

What is Oracle Learning Management ?

Unlike other applications Oracle Learning Management(OLM) is an application bund led with Oracle e-Business Suite. OLM is designed to support all educational trainings o their employee, applicants, customers and business nything like a company training new employees on HR ny offering a training on Strength of Materials or ployees on Marketing Skills . provided by an enterprise t partners. Training can be a Policies , a construction compa an enterprise training their em

OLM system automates the process of training and lets organizations manage, deli ver, and track training participation in online or classroom-based environments. Learners can find the learning they need, and take the learning in the most app ropriate delivery mode (in a classroom, in a virtual classroom, or elearning). M anagers can automate key business flows right from order processing to training delivery and from performance appraisals to training assessments. OLM is integrated with other applications like Talent Management, Oracle Financi als and Oracle Order Management to administer the financial and commercial aspec ts of learning business. Benefits of OLM To Develop the workforce by training them on the organizational needs. Tie Training to Organizational Goals Reduce Costs through Online Learning Delivery Simplify Administration of Training process/flow through a Unified Catalog Increase Efficiency by Managing Learning Content Extend Solution Value by Providing Learning to Customers and Partners Simplify Administration by Efficiently Scheduling and Managing internal/exte rnal Training Resources Basics of OLM As you got to know about the purpose of OLM, lets now get into the basic functio nal concepts of OLM. Catalog Objects The above screenshot is the Catalog page of learning Administrator responsibility. Catalog is a user interface for an administrator to setup, manage and execute t he process of learning/training. A catalog consists of several learning objects like Categories Sub-Categories Courses Offerings Classes Sessions Sub-sessions

Category: A category is a first level hierarchy which classifies a catalog and d ifferentiates different courses and helps to find all related information of a l earning in one single area. A category is nothing but a folder as shown in the a bove screenshot. A category can also consist of sub-categories. Eg:- New Hires In duction Program Course: A course is a second level of hierarchy which discusses a brief inform

ation of subject matter which is to be taught to a trainee, courses are grouped into a category. Eg:- HR Policies , Leave Policies , etc. Offering: An offering is a third level of hierarchy which determines the mode of learning, i.e the way how a training is delivered and in which language the tra ining will be delivered. Additionally Offering consists of Pricing, Costing info rmation and number of people who can attend the learning program. Here is some i nformation on delivery modes: Delivery Mode Online Synchronous Description Instructor Led Training (Classroom) No Yes Its similar to class roo m training where trainer and trainees come together to a specified location for training. Self Paced Online Yes No Where a Trainee himself reads and learns online. Eg:- learning from a recorded webinar, reading online documents Self Study Offline No No Where a trainee learns by himself. Eg:learning by book reading Web Conference Training Yes Yes Trainer and Trainees meet online through a conferencing tool. Eg:- Webex Key Notations of Delivery Modes Class: Class is fourth level of hierarchy which defines where and when a class h appens. A class is a learning object to which a learner(Trainee) enrolls and att ends to take learning. This is the only activity in the hierarchy which happens physically. Session: A session is a lowest level object of catalog hierarchy which is sub di vision of a class. Session is a discrete topic or time slot within a class. A cl ass may last from couple of hours to days in which the discrete topics are divid ed into different time slots. Eg:- A class is for one hour a day for one week wh ere each day s class is called a session. Key Notations of Catalog Objects Click here to read Part-II of this post No related posts. Join us @ WOW! Did you like this post? We'll send more interesting posts like Basics Conce pts of Oracle Learning Management(OLM) Part I to you! Enter your Email Address: Recent Posts SQL Tuning or SQL Optimization How to get Concurrent Request ID of a parent program in a child program of a Request Set? PL/SQL script to find Blocking Sessions/Objects and to Kill them How to Display Leading Zeros in XMLP Report Excel Output PL/SQL Script to Generate XML Tags for XMLP Report API to Purge/Delete Employee from HRMS application How to submitt XMLP Report using a PL/SQL Script Global Temporary Tables in Oracle How to use DML Statements in a Function PL/SQL Script to Submit a Concurrent Request form backend FAQs on Oracle Alerts PL/SQL Script to Add a Concurrent Program to a Request Group from backend

STAY CONNECTED Join us at Facebook Subscribe FREE updates on your Email | RSS My Sponsers~! Recent Posts from this Category Learning Paths in Oracle Learning Management Basics Concepts of Oracle Learning Management(OLM) - Part II Setup to get access to OLM Administrator page Basics Concepts of Oracle Learning Management(OLM) - Part I Tag Cloud back to back order concurrent manager Cost Manager Diagnostics dropshipment Errb uf FNDLOAD FNDLOAD download FNDLOAD upload FND_DEVELOPER_MODE FND_DEVELOPER_MODE in routine How to port reports from one instance to another HRMS Profile Option s iStore items not available ldt files Line Status Flow MOAC Move Transaction Ma nager O2C Cycle Oracle Logo Oracle Reports Pending Resource Transactions persona lization pl/sql procedures porting reports profileoption Profile options Retcode RICE Sales Order line Status Flow Ship Confirm button greyed Shipping Transacti ons form table suffix WIP_COST_TXN_INTERFACE _A _ACN _ALL _AVN _B _F _S _TL _V _ VL Categories AOL and SYSADMIN (20) AOL SQL Scripts (17) HRMS (2) iRecruitment (1) iStore (1) OAF (1) Oracle Alerts (1) Oracle APIs (2) Oracle Apps Basics (5) Oracle HRMS (2) Oracle Inventory (3) Oracle Learning Management (4) Oracle PL/SQL (6) Oracle Purchasing (2) Oracle Receivables (1) Oracle Reports (2) Oracle SQL (9) Oracle Workflows (5) Order Management (11) Personalizations (4) Profile Options (5) Security (1) Shipping Execution (2) WIP Jobs (1) XMLP (5) COPYRIGHT This work is licensed under a Creative Commons-NonCommercial 2.5 License. Recent Comments santhosh no ...before pick confirm i.e pick realese its possible .

Sales Order Line Status Flow 2 weeks ago santhosh awesome ..........good work Useful Information about Workflow Background Process Concurrent Program 2 we eks ago sekar GOOD DOCUMENTS THANKS A LOT Workflow Email Notifications not working for a particular user 2 months ago Shailender Thallam Hello Mahesh, I'm sorry, I don't have much knowledge on P2P cycle. About Me 3 months ago Mahesh Kumar Hi Shailender. Can you post an article on P2P Cycle similar to "Back to Back Order Function al and Technical Flow" in r12 Context? Thank you. About Me 3 months ago Powered by Disqus

Anda mungkin juga menyukai