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

Tags: Oracle Applications

Similar Questions

  • How to make a single instance of the application regardless of the main application and the other entry point for the application

    Hello experts,

    I explain the sceniro of my application. My request is mainly a time system as well as some other features related businesses. My app has a landing screen which is actually a custom made calendar that accumulates information captured time. There is also a time where entry screen user at will has worked time and other related information. The user has the option to run the application manually at the entrance of the time and see the reports and there the event listener to follow the events of call/SMS/e-mail that invokes the application automatically and user to the scree of time entry.

    Problem one: I used headphones to follow the events of call/SMS/e-mail. When an event is called, alternet point of entry of the application the application is running. Application then get calls time, contact information etc. and push my entry screen with pre-filled information time.

    As such, it works very well, as expected, but the problem is the number of instence that he is creating. Each track event creates a new instance of the application. I want to keep only one instance.

    Two problems: to solve this problem, I removed the other point of entry and RuntimeStore to keep the running instance of my application. This instance of the application in a way keeps in singletone as such when the listener calls the application it finds that the application is running in the background. Then she moves the application to the foreground. It works very well, I mean the application user interface called on the foreground, but he won't have to time entry screen automatically as I hope. The block of code is as follows,

    public static final long applicationID =0x8ddc44508679bd5bL;
    static NSIApplication NSIInstance=null;
    RuntimeStore runtimeStore = RuntimeStore.getRuntimeStore();
    
    if (NSIInstance != null)
                {
                    NSIInstance.requestForeground();
                }
                else
                {
                    synchronized (runtimeStore)
                    {
                        NSIInstance = (NSIApplication)runtimeStore.get(applicationID);
                                            //listener initialization
                        NSIListener.Initialze();
                    }
    
                    if (NSIInstance != null)
                    {                   NSIInstance.requestForeground();
                                        //event's info manipulation and push the time entry screen                                     NSIInstance.RUN_NSIApplication();
                    }
                    else
                    {
                        NSIInstance=NSIApplication.getInstance();
                        NSIInstance.RUN_NSIApplication();
    
                        synchronized(runtimeStore)
                        {
                            runtimeStore.put(applicationID, NSIInstance);
                        }
    
                        NSIInstance.enterEventDispatcher();
                    }
                }
    

    I expect a guideline to follow so that I can reach the expected my workflow. Thanks in advance

    I can't propose to use the runtimestore to store instances of the application, as it was used on an example RIM, he has never worked for me.

    I suggest to use a single point of entry and the automated screen using a global event or status in the runtimestore.

  • How can see calendar of the concurrent program to a user

    Hi all

    I need an application that can show me the concurrent programms that are scheduled with a user. I need also interval
    timing to execute programs of the programs for this user. I also want to see the names of calendar.

    Please I need urgent I will be very grateful for your kind support.


    Thank you

    Salvation;

    Please see:
    How to determine the regular of simultaneous requests [ID 170107.1]
    Re: At the request of simultaneous queries SQL query

    Respect of
    HELIOS

  • Start several Instances of ABC to a single Instance of the EBS provider

    Dears

    Currently an initiative of integration, we are integrating next design flow:

    (1) we have a single applicant request; We design the related ABC applicant
    (2) we use on single EBS. We use the EBS synchronization operation
    (3) we have 2 provider ABC

    Our business requirement is:
    If a single message is derived from the application of the applicant by the applicant, ABC, it must be published both applications via ABC provider provider components. In fact an instance of ABC single applicant will create, only one instance of the EBS and 2 provider ABC instance created

    Can you please suggest how we can design the EBS service in such a way that 2 instances of provider ABC will be created from single instance of EBS

    Thanks in advance

    Best regards

    Mohamed Chargui

    The answer to your question is Yes, one Ombudsman can invoke two service calls at the same time as well.
    First of all, define your service references in the composite.xml
    Once you have done this, you can add any number of routing rules for each operation defined in the Ombudsman. In your case, you need to add two static routing rules within the same operation in the Ombudsman file. You can also select if the calls will be sequential or parallel by selecting the correct value in the drop down within the routing rule. Each routing rule will call a service reference in your case.

  • 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

  • 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

  • Migration of workbook using the concurrent program

    Hi all

    I developed a simultaneous program to migrate the workbooks of development to the production instance. This simultaneous program saved in the production instance and it will show all workbooks in development instance (it could possible using the DB link) and if I can select the report and submit the request, it checks if reports closes in production using the identifier. If there is, it will update the BLOB (workbook), otherwise it will insert BLOBs (workbook) in the production instance.

    Please share if you have any concerns about this approach and let us know if you need more information.

    Thank you
    Ramakrishna

    Hello Rico
    I agree with rod of feelings as export aid. Import, method of migration of files between environments. Most large and medium size is to think of it, the companies would cringe at the thought of having an automatic work that installs anything in the Production of Test or Test development. The right approach would be to include discoverer in standard migration methodology to move code between environments.

    Developers should not be responsible for the migration of the Production code, and should not have the means to do so. Even if we all think that we know what we're doing essentially is that it should be up to the person to team or support of migration to migrate the code. It should also be a document of migration that explains what that is moved and why.

    So, while we can do technical things astute enough like what you describe, and I admire your outside of the box thinking, in the real world strategy I think it would be most businesses in more trouble they would like to enter.

    Well, now just the SOX compliance justification not to do let me also agree with rod on technical reasons.

    Best wishes
    Michael

  • How do I know what sql query is taken on time for the concurrent program

    Hi Sir,

    I am running simultaneous program, which takes time to run, I want to know what sql query causing performance

    Thanaks,

    Anthony

    Hi Anthony,.

    Activate the traces on the simultaneous program and then run tkprof on trace file.

    Octavio

  • Ensuring a single instance of the sound

    I have this code:

    var mySound:Sound = new Sound();

    var myChannel:SoundChannel = new SoundChannel();

    var lastPosition:Number = 0;

    mySound.load (new URLRequest("audio/audio1.mp3"));

    pause_btn.addEventListener (MouseEvent.CLICK, onClickPause);

    function onClickPause(e:MouseEvent):void {}

    lastPosition = myChannel.position;

    myChannel.stop ();

    }

    play_btn.addEventListener (MouseEvent.CLICK, onClickPlay);

    function onClickPlay(e:MouseEvent):void {}

    myChannel = mySound.play (lastPosition);

    }

    stop_btn.addEventListener (MouseEvent.CLICK, onClickStop);

    function onClickStop(e:MouseEvent):void {}

    SoundMixer.stopAll ();

    }

    Everything works well: when I click on the play button it starts and takes the sund. But if I accidentally press the buttun to start twice he brings two simultaneous is heard. How can I make sure that only 1 instance of the sound plays?

    Thanks for any help.

    use:

    var isPlayingBool:Boolean;

    var mySound:Sound = new Sound();

    var myChannel:SoundChannel = new SoundChannel();

    var lastPosition:Number = 0;

    mySound.load (new URLRequest("audio/audio1.mp3"));

    pause_btn.addEventListener (MouseEvent.CLICK, onClickPause);

    function onClickPause(e:MouseEvent):void {}

    lastPosition = myChannel.position;

    myChannel.stop ();

    isPlayingBool = false;

    }

    play_btn.addEventListener (MouseEvent.CLICK, onClickPlay);

    function onClickPlay(e:MouseEvent):void {}

    {if(!isPlayingBool)}

    myChannel = mySound.play (lastPosition);

    isPlayingBool = true;

    }

    }

    stop_btn.addEventListener (MouseEvent.CLICK, onClickStop);

    function onClickStop(e:MouseEvent):void {}

    SoundMixer.stopAll ();

    isPlayingBool = false;

    }

  • Can not find the concurrent program

    Hi all

    EBS 12.1.3 on RHEL 5.7, 64-bit

    Database 11.1.0.7 Std Ed

    What is the program to purge the XLA_DIAG_SOURCES table?

    Concerning

    Hello

    Take a look at this document:

    How to purge the populated tables allowing the diagnosis of ALS? (Doc ID 1516562.1)

    Kind regards

    Bashar

  • Enabling\Displaying more than one parameter in the concurrent program.

    I need to create four simultaneous program settings where the 2nd, 3rd and 4th are active and disabled depending on the value selected in the first parameter.

    If the first value of the parameter is 'X', then I need to allow the 2nd and 3rd and 4th parameter to disable.

    If the first value of the parameter is 'Y', then I need activate 4th and disable parameters 2 and 3.

    Please help me on this

    Thanks in advance

    Kiran

    Hi Kiran,

    See if the solution in link below helps to:

    Toggle settings for simultaneous program dynamically - Oracle CRM Blog

    Thank you

    Arun

  • Print server multiple on a single instance of the Apex

    Hello!
    I find no particular reason why an instance of Apex (4.1) only has a definition of print (FOP or BI) Server?

    In many cases, I prefer to use Apache Cacoon and in some cases Birt/Jasper reporting solution (ready made reports).
    Am I missing something?
    RG,
    Damir Vadas

    Hello

    You configure a server in the instance settings.
    You then use the report attributes Print Print Server overwrites the value different server for specific reports.
    http://docs.Oracle.com/CD/E23903_01/doc/doc.41/e21674/bldapp_rpt.htm#sthref1392

    Kind regards
    Jari

    http://dbswh.webhop.NET/dbswh/f?p=blog:Home

  • RETCODE = 2 does not complete the concurrent program with the error.

    Hi all

    I have a custom Package and a procedure with a parameter that accepts the item number.

    Here is my Code:

    CREATE OR REPLACE PACKAGE BODY CUSTOM_TEST_PKG
    PROCEDURE MAIN (P_INVENTORY_NAME IN VARCHAR2, ERRBUFF OUT VARCHAR2, OUT VARCHAR2 RETCODE)
    IS
    V_ITEM_ID NUMBER;
    BEGIN
    FND_FILE. PUT_LINE (FND_FILE. EXIT 'before the subprogram");

    / * Start of subprogramme * /.
    BEGIN
    FND_FILE. PUT_LINE (FND_FILE. EXIT 'before the Select query");
    SELECT INVENTORY_ITEM_ID IN THE V_ITEM_ID MTL_SYSTEM_ITEMS_B WHERE SEGMENT1 = P_INVENTORY_NAME
    AND ORGANIZATION_ID = 204;
    FND_FILE. PUT_LINE (FND_FILE. EXIT "after the Select query");
    FND_FILE. PUT_LINE (FND_FILE. OUT,' the name of the element passed as parameter IN :'|| p_inventory_name);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    RETCODE: = 2;
    ERRBUFF: = 'no items exist. "
    FND_FILE. PUT_LINE (FND_FILE. JOURNAL, ERRBUFF);
    END;
    / * End of subprogramme * /.

    FND_FILE. PUT_LINE (FND_FILE. EXIT "after the subprogram");

    END MAIN;
    END CUSTOM_TEST_PKG;
    /


    Could someone help me on this.

    errbuf and retcode must be parameters of 1st and 2nd respectively. 3rd onward are the order of simultaneous program settings. Change your code.

    Kind regards
    Gareth

  • How to make a backup of the database with RMAN Oracle Single Instance

    People,

    Hello. I use the server of Oracle 11 GR 1 material with operating system Oracle Linux 5.10 database.

    I understand how to back up the database instance in SQL Server with Windows. But do not really understand how to back up the database instance in Oracle on Linux.
    I did it cold and hot backup for the database HRCS90 instance, but both receive the same error message.


    Cold backup is below:

    SQL > startup
    ORACLE instance started.

    Total System Global Area 538677248 bytes
    Bytes of size 2146024 fixed
    528482584 variable size bytes
    4194304 buffers of data bytes
    Redo buffers 3854336 bytes
    Mounted database.
    Open database.


    SQL > shutdown immediate
    The database is closed.
    The database is dismounted.
    ORACLE instance stops.


    RMAN > backup database;

    From backup 25 November 13
    using the control file of the target instead of recovery catalog database
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03002: failure of the backup command to the 25/11/2013 14:26:52
    RMAN-06171: not connected to the target database


    RMAN > backup HRCS90

    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-00558: error occurred during parsing of order entry
    RMAN-01009: syntax error: found 'distinctive sign': expected an of: ' archivelog, auxiliary, as, backup backupset, blocks, channel, check, copy, copies, controlfilecopy, cumulative, current, basic data, datafile, datafilecopy, device, diskratio, db_recovery_file_dest, db_file_name_convert, duration, filesperset, for, format, from, full, strength, file, incremental, keep, (, maxsetsize nochecksum, noexclude, nokeep, not, proxy, pool, re-use, recovery, section, skip). ', spfile, skip readonly, setsize, tablespace, tag to validate.
    RMAN-01008: the identifier of the AfDB was: HRCS90
    RMAN-01007: line 1 column 8 file: entry standard


    RMAN > backup database HRCS90

    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-00558: error occurred during parsing of order entry
    RMAN-01009: syntax error: found 'distinctive sign': expected an of: ' archivelog, auxiliary, backupset channel, copy, controlfilecopy, backup, common, base data, data file, datafilecopy, remove, diskratio, db_recovery_file_dest, filesperset, format, force, file, include, keep, (, maxsetsize, noexclude, nokeep, not, pool, more reuse, recovery, section, skip, spfile, pass readonly, setsize, tablespace, tag, to).
    RMAN-01008: the identifier of the AfDB was: HRCS90
    RMAN-01007: line 1 column 17 file: entry standard

    While the instance of database HRCS90 is starting, I do hot backup by using the same commands and get the same error message with above cold backup.

    My question is:

    Can any folk tell me specific steps (order by order) to back up a single instance of the database in Oracle with RMAN?


    Thank you.

    Yes, you can restore and recover the backup, but not at the moment. You will only be able to restore and recover at the time of your backup.

    For example.

    If you take backup (mount point with no mode of journal archive) at 06:00 and your grave database crashes at 21:00, you will be able to restore and recover until 06:00. You will find all the changes made to the database between 06:00 and 21:00.

    If you want your database to recover until 9 PM or until a point in time, then you must put your database in log mode archive, and then save the archives.

  • 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

Maybe you are looking for

  • Search

    Hello Sorry, but I don't like the 'Search Page' function in the newly updated nightly.My headache:And others, I want to search "Facebook."In the evening, I have to type the upper letter F first of all, even the full article I want to find on a page.I

  • Need drivers for Satellite Pro A100 (PSAAPE)

    Can anyone help need drivers for my laptop?I can not find them. I have no disk is possible off please upload them. Can someone help?Thank you

  • Problem with PCI-6023E

    Salve a tutti, como posso verificate is scheda PCI 6023E works correctly? Currently ho controlled nelle periferiche di computer e pulito che funziona esiste some altro modo per verificare gli ingressi analogici correctly?Questa e macchina da anni che

  • Get rid of the horrible magnification in Vista

    I need help immediately to get rid of all the magnification in Vista.  All themy emails, my windows sidebar, the software for my magic jack - all are magnified and I can't stand it.  I tried everything but can't make it disappear!  Please help me.  

  • How to install a driver for a 1200 dpi USB Scanner?

    Original title: the driver Installation How to install a driver for a 1200 dpi USB Scanner?