Location of concurrent programs seeded scenarios

Hello

It is a general question.

I want to know the location of the scripts for concurrent programs seeded as active users, stats diagram collect concurrent programs...

Thanks in advance.

It is a general question.

I want to know the location of the scripts for concurrent programs seeded as active users, stats diagram collect concurrent programs...

It depends on the type of report - Oracle does not provide the source code for all concurrent programs.

For example, the executable 'Active users' method is "Oracle Reports" and you can find it under $FND_TOP/reports / Directory - place you (responsibility of the system administrator > simultaneous > program > define, then ask the simultaneous program name to get the name of the executable file (FNDSCURS) and you can find the report FNDSCARU.rdf in $FND_TOP/reports / Directory.)

For having engineered concurrent programs, please visit https://forums.oracle.com/forums/search.jspa?threadID=&q=Spawned+AND+Source&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001

For the other types (such as Java), you can search the forum just the way that I did for concurrent programs laid.

Thank you
Hussein

Tags: Oracle Applications

Similar Questions

  • How to find the source code (package / service..) a concurrent program

    Hello


    I gives me the name of a concurrent program.

    Now my question is, how do I find the source code for the simultaneous progra.


    Could someone explain to me.

    FYI: I have full access (sysadmin).

    Thank you
    Prasad
    Senior Oracle Apps DBA

    PL post Details of the operating system, database and versions EBS.

    Responsibility of the system administrator, go to the competitor > program > set and search for the name of your simultaneous program. When you find it, there will be a 'the executable name' that are associated with him.

    Go to the competitor > program > executable and locate the 'name of the executable"- and you will get the information you need.

    http://docs.Oracle.com/CD/E18727_01/doc.121/e12897/T302934T458253.htm

    HTH
    Srini

  • Can I install MS Reporting Services to another location, like E:\Program files?

    Can I install MS Reporting Services to another location, like E:\Program files?

    Hello

    To improve assistance to this topic, I suggest you post your question here.

    SQL Server Reporting Services

    http://social.technet.Microsoft.com/forums/en-us/sqlreportingservices/threads

  • Create a new responsibility to run a concurrent program

    Hi, I have a very basic question. I wrote a simultaneous program in Java, I want to create a new responsibility and assigned the roles/function so that the user can access and execute my competitor Java program.
    I am new to EBS so I don't have an idea how to do this. Please let me know if there is a guide that provides steps to create a responsibilities, roles/functions and then access my simultaneous Java her program.

    Also generally provide fixes for the changes we make in the EBS environment. For once I create roles and responsibilities and how to create a patch for my changes so that they can be applied to other EBS environments.

    My data from the environment are:
    EBS - 12.1.3
    DB - Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    OS - Linux < host_name > 2.6.9 - 89.0.0.0.1.ELhugemem #1 SMP Tue May 19 04:38:38 EDT 2009 i686 i686 i386 GNU/Linux

    Thank you!

    Oracle guides are available here. Refer to the guide to the system administrator for details on accountability, simultaneous program etc..

    http://docs.Oracle.com/CD/E18727_01/NAV/technology.htm

    In addition links below might be useful.

    http://docs.Oracle.com/CD/E18727_01/doc.121/e12843/T156458T156461.htm
    http://www.in-Oracle.com/Oracle-Apps/11i/create-responsabilities-apps.php
    http://www.exforsys.com/tutorials/Oracle-Apps/Oracle-Apps-sys-admin-users-and-responsibilities.html
    http://my.safaribooksonline.com/book/databases/Oracle/9781849684842/making-a-concurrent-program-available-to-a-user/id286752990
    http://Oracle.anilpassi.com/Java-concurrent-programs-in-Oracle.html
    http://erpschools.com/articles/concurrent-program-registration-and-add-it-to-request-group

    Thank you
    Shree

  • How to call button form oracle concurrent program

    Hi all

    I'm working on forms of Oracle 10 g and Oracle Applications: 12.1.2
    already, I have created a simultaneous program (GRN report) and that with Receipt_number and org_id as parameters and the output format is. PDF. Its working fine.

    Whenever customers need the report, they have to give the values of name and then correct setting program simultaneous then refresh, then clicking on the button view exit they see the output.

    Now what I want is from the button of form (named as print report) is it possible to call this concurrent program and when the button is clicked, it will ask to the parameter values after giving all the parameter values and clicking on the SUBMIT/go button it must give the same output (.pdf) as simultaneous program.

    can someone tell me how to get this.

    Thank you

    Kind regards
    Guru

    Hi guru
    You can set up the format of output with the report itself :)
    As a system administrator, change the output format of program competing in "pdf" format Then the click of a button will appear automatically the output .pdf

    Kind regards

    REDA

  • Run the main program simultaneous child concurrent program

    Hello

    I am trying to execute the concurrent program of child of the main competitor program as below, could you suggest me on below.

    Database: 10 g

    Main_Concurrent_Program
    =================

    1) will update the intermediate table XXID_PO_ITM = 1,2,3,4,5 Batch_id
    This staging table has 1000 rows, so each 200 lines will be updated with one of the above batch_id
    This logic works.

    Child_Concurrent_Program
    ================
    (2) above program main competitor has to call under Child_Concurrent_Program.
    This Child_Concurrent_Program will be setting batch_id (based on above batch_id)

    So, this Child_Concurrent_Program is expected to launch with batch_id = 1
    Simillarly, Child_Concurrent_Program should start with batch_id = 2
    Child_Concurrent_Program should start with batch_id = 3
    Child_Concurrent_Program should start with batch_id = 4
    Child_Concurrent_Program should start with batch_id = 5



    Could you give me some suggestions on this?

    Thank you.

    Check with FND_SUBMIT to submit a simultaneous work with dependencies of the child. Keep in mind that once you call the API... it creates its own thread and and becomes a standalone process. Control is no longer maintained in the calling package.

    procedure submit_interface_data(p_schedule_date in date,p_mm_header_id in number,p_req_id out number)
    is
      v_user_id            number;
      v_application_id     number;
      v_responsibility_id  number;
    begin
                select user_id
                into   v_user_id
                from   fnd_user
                where  user_name = 'USER123';
    
                select application_id,
                       responsibility_id
                into   v_application_id,
                       v_responsibility_id
                from   fnd_responsibility_tl
                where  responsibility_name = 'General Warehouse';
    
      fnd_global.apps_initialize(v_user_id,v_responsibility_id,v_application_id);
      p_req_id := fnd_request.submit_request ( application => 'XYZ',
                           program     => 'MOVE_CONC_SHORT_NAME',
                           description => null,
                           start_time  => p_schedule_date,
                           sub_request => false,
                     argument1   => p_mm_header_id);
    
      commit;
    exception
     when others
       then
         spl_log_pub.write_exception(transaction_id   => null,
                                     transaction_type => null,
                                     error_message    => '' ||
                                     'sqlcode: ' || sqlcode ||
                                     'sqlerrm: ' || sqlerrm);
    end submit_interface_data;
    

    Published by: sreese on May 18, 2012 15:16

  • Ranging from concurrent programs 11.0.3 to 11.5.10

    Hello

    We work to upgrade from 110.3 to 11.5.10. In this process, I need to spend all concurrent programs 11.0.3 to
    11.5.10. I hope that FNDLOAD won't be supported by 11.0.3. Y at - it another way to do this? I checked some forums and sites, I could not the
    correct way to do.

    Oracle Experts, please suggest me a site where I can get an idea or suggest me a work-around.

    Any suggestion or help will be appreciated.

    Thank you

    We work to upgrade from 110.3 to 11.5.10. In this process, I need to spend all concurrent programs 11.0.3 to
    11.5.10. I hope that FNDLOAD won't be supported by 11.0.3. Y at - it another way to do this? I checked some forums and sites, I could not the
    correct way to do.

    long time back that we migrated 11.0.3 to R12, its much-needed time, because of structural changes process specific module of the table, many changes in 11.0.3 11i or R12 tables of database, you must check to compare both versions and the mapping to fields on the tables in the report specific module.

  • single instance of the concurrent program

    How limiting it is only 1 instance of simultaneous application of a simultaneous to run at a time program already?

    for example, if the simultaneous program need exclusive access to a table, how can limit us only 1 instance of the simultaneous program is running?

    Currently, we are trying several bank statement loader (cash management module) and we suspect this program 2 charger fights for single temporary table: ce_stmt_int_tmp

    Do the incompatible competitor with itself

    Cannot make Incompatible concurrent programs with himself (Doc ID 436186.1)

    HTH
    Srini

  • What is concurrent programming

    Hello
    What is concurrent programming?

    any link or idea?

    It is covered and explained in "The Oracle Applications Developer Guide" manual.

    Guide of the Oracle Applications Developer - R12
    http://download.Oracle.com/docs/CD/B5382_03/current/Acrobat/121devg.PDF

    The Oracle Applications Developer Guide - 11i
    http://download.Oracle.com/docs/CD/B25516_18/current/Acrobat/115devg.PDF

    Thank you
    Hussein

  • How to end all concurrent programs back-end

    Hello


    Can someone tell me how to end all concurrent programs running in backend

    This post in the EB forum;

    In addition, investigate the fnd_concuurent of integrated package

    begin
    
       for r in (select Request_ID from fnd_Concurrent_Requests
                 where Phase_Code != 'C') loop -- exclude requests that have successfully completed (R = Running P = Pending)
    
         fnd_concurrent.cancel_request(r.Request_ID);
         commit; -- you must perform a commit after each call
    
       end loop;
    
    end;
    /
    
  • Register proc of pl/sql under the concurrent program

    I'm looking to which a pl/sql package.procedure as a concurrent program.

    I would like to run the concurrent request of user FX_RATES, i.e.
    SQL> l
      1  select fnd.User_id
      2        ,fresp.Responsibility_ID
      3        ,fresp.Application_ID
      4  from   FND_User fnd
      5        ,FND_Responsibility_tl fresp
      6  where  upper(fnd.User_Name)              = 'FX_RATES'
      7* and    upper(fresp.Responsibility_Name)  = 'GL SUPERUSER'
    SQL> /
    
       USER_ID RESPONSIBILITY_ID APPLICATION_ID
    ---------- ----------------- --------------
          1067             50254            101
    So I used the following script to record the simultaneous program:
    declare
      b_OK boolean;
    begin
    
      fnd_global.apps_initialize(1067, 50254, 101);
    
      b_OK := fnd_submit.set_nls_options('AMERICAN');
    
      fnd_program.executable( 'GL_MNH_FX_LOAD'                  -- executable name
                            , 'SQLGL'                           -- application name
                            , 'GL_MNH_FX_LOAD'                  -- short_name
                            , 'GL Mnh Rate Load'                -- description
                            , 'PL/SQL Stored Procedure'         -- execution_method
                            , 'GL_RATE_LOAD.LOAD_FX_MNH_RATES'  -- execution_file_name
                            , null
                            , null
                            , 'US'            -- language code
                            , null);
      commit;
    
      fnd_program.register ( program                => 'GL Mnh Rate Load' -- Name seen on concurrent request screen
                            ,application            => 'SQLGL'
                            ,enabled                => 'Y'
                            ,short_name             => 'GL_MNH_FX_LOAD'
                            ,description            => 'Loads FX Rate file'
                            ,executable_short_name  => 'GL_MNH_FX_LOAD'
                            ,executable_application => 'SQLGL'
    
      commit;
        
      fnd_program.add_to_group('GL_MNH_FX_LOAD'
                               ,'SQLGL'
                               ,'GL Concurrent Program Group' -- Request Group Name
                               ,'SQLGL');
      
      commit;
    end;
    /
    But when I login as FX_RATES I can't view the competitor ask "GL Mnh charge rate.
    When I login with administrator user, I can see the program is defined, i.e. simultaneous-> program-> define.

    So why is the simultaneous program not available in the screen after you select SUBMIT new request when logged in as FX_RATES?

    Hints would be much appreciated!

    After you connect as user FX_RATES, what responsibility you choose? The new concurrent program should be added to the application group that belongs to this responsibility.

    For research through forms, you access the form, press F11, enter the search criteria, and then press Ctrl + F11 to retrieve results.

    PL note this change of basic objects (such as responsibilities and application groups etc.) is not recommended. These changes will not survive an upgrade, as the upgrade process will be back on all these custom changes. It is best to create custom query groups / menus / responsibilities etc. to all custom objects.

    HTH
    Srini

  • Helping define a new concurrent program using parameters

    I wrote a very simple sql script and I want to save it as a simultaneous Oracle program. I have included a parameter field in the sql script to allow the entry of a value to determine the number of days prior to the script. The script runs correctly in SQL * Plus, but when I try to record it as a competitor Oracle program I get the following errors below:
    This works in SQL* PLUS
    
    SELECT emp_id, amount
    FROM tblSalaries
    WHERE hire_date > SYSDATE-&Days;
    
    Enter value for Days: 7
    old    3: hire_date > SYSDATE-&Days
    new  3: hire_date > SYSDATE-7
    
    And it provides my results....
    Although when I save this as a simultaneous program and set the configuration setting and run the simultaneous program and enter the number in the parameter field, work ends with an ERROR with the following:
                                                                                                             
    Enter value for Days: EXEC FND_CONC_STAT.COLLECT;
    hire_date > SYSDATE-EXEC FND_CONC_STAT.COLLECT; and
                                        *
    ERROR at line 3:
    ORA-00933: SQL command not properly ended 
    If I put single quotes around '& days', in line 3, I get a different error:
    ERROR at line 3:
    ORA-01722: invalid number 
    Do you know what could be the problem?
    Thanks for the review!

    Hi intertwine.

    Try using 1 & instead of & days in your SQL * more script. In this way, it will be recognnized as the first parameter provided from the concurrent program execution window. It will be useful.

    Kind regards.

  • How can I control the concurrent programs?

    Hello
    When simultaneous GL & OPM ruinning programs, off-server peformance classes. How can I control it? I want to restrict the user not to submit or don't work not during office hours. How is it possible?

    Concerning
    Ariz

    Ariz,

    Please mention the version of the application, the database version and the operating system.

    The performance was accepted before? If so, what changes have been made recently?

    Is the problem with concurrent programs standard or custom? In addition, please mention the names of simultaneous (if possible) program.

    Do you run simultaneous program "Gathering statistics for schema" regularly?

    To find out why these simultaneous program affects performance, enable trace as shown (Note: 296559,1 - FAQ: Techniques of common tracing in the Oracle Applications 11i/R12) and generate the file TKPROF.

    You could schedule the program to run at certain times - see "Oracle Applications Documentation Set Guide system administrator" for more details.

    Oracle Applications documentation
    http://www.Oracle.com/technology/documentation/applications.html

    Kind regards
    Hussein

  • How to call ofa page concurrent programs

    Hi all

    I need call concurrent programs of OPS page.user will select the out put the type of lookup and a button more must be RUN it if he select type and run the report.

    can someone suggest me how should I call from ofa simultaneous program page



    Thanks in advance
    Anthony

    Hello

    He comes to work for the same code:

    The controller code:

    Am3 ForumAMImpl = (ForumAMImpl) pageContext.getApplicationModule (webBean);
    RequestId int = (int) am3.submitrequest ();
    String url = "OA.jsp? akRegionCode = FNDCPREQDETAILSTOPREGION & akRegionApplicationId = 0 & REQUESTID ="+ requestid +"& retainAM = Y & addBreadCrumb = Y;

    pageContext.setForwardURL (url,
    NULL,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    NULL,
    NULL,
    true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAWebBeanConstants.IGNORE_MESSAGES);

    Code of the AOS

    public int submitrequest()
    {

    Try
    {
    OADBTransaction tx = (OADBTransaction) getOADBTransaction ();
    java.sql.Connection pConncection = tx.getJdbcConnection ();
    ConcurrentRequest cr = new ConcurrentRequest (pConncection);
    String applnName = "PA." Application that contains the concurrent program
    String cpName = "SAPE_WITHDRAW_NOMINATION"; The simultaneous program name
    String cpDesc = "auto remove appointments with expired Nomination period; simultaneous description of the program

    Pass Arguments using the vector

    Vector cpArgs = new Vector();

    Call the simultaneous program
    requestId int = cr.submitRequest (applnName, cpName, cpDesc, "", false, cpArgs);
    TX.Commit ();
    System.out.println ("Request ID is" + requestId);
    return requestId;
    }
    catch (RequestSubmissionException e)
    {
    OAException oe = new OAException (e.getMessage ());
    oe.setApplicationModule (this);
    throw oe;
    }
    }

    Thank you
    Gerard

    Published by: Gauravv on November 9, 2009 20:16

  • How to check all regular concurrent programs.

    Hi all

    APPLICATIONS: 11.5.10.2
    DB: 9.2.0.8

    How to check all concurrent programs scheduled at the same time, is their any script to do this?

    Thanks in advance to 1 million.

    Hello

    Please see the following threads.

    How to know the application is scheduled or not?
    How to know the application is scheduled or not?

    Need to report or a query to see all scheduled tasks
    Need to report or a query to see all scheduled tasks

    Kind regards
    Hussein

Maybe you are looking for

  • Search in the Mail does not!

    I've recently updated to El Capitan of Snow Leopard and now when I get something in the Mail, happens absolutely nothing, not even "Councils", and, to, subject, nothing. In addition, at least a dozen of my mailboxes no longer appear in the left colum

  • Installing XP on Portege R100

    Hello. I'm trying to re - install Windows XP on a Portege R100. I have a CD of tools & utilities but no system recovery disk. I have a Toshiba CR ROM that connects to the laptop through a cardbus. I thought it would be a simple matter of putting my X

  • HP Pavilion Dv7 Notebook PC: The amount of RAM is this laptop able to use? Also the quesiton to scan fingerprints

    Good so recently my computer has been doing slower and I thought that an upgrade of RAM could not wrong at all. If the amount of RAM would this laptop computer plug and what kind of RAM would be best? My processor is the Intel Core processor i5-2430

  • Slate7 2800 - microsd with the new update problem

    Hello world.Yesterday, I received an OTA update on my slate7. After installation, the Tablet has become faster (especially at startup), but now it is not recognized any microsd! I tried different memory cards, but nothing. The update is 1.05.17_user.

  • Manager of media to Smartphones blackBerry SUCKS! Help

    OK, so I got my Curve 8300 for awhile now. I have a Windows xp 2 gigabytes of ram and a P3 processor. I have a really decent computer that just about everything. HOWEVER! When I load up my Desktop Manager and click on Media Manager... Media Manager r