How to know the status of concurrent program from back-end in oracle apps

Hi,
Can you please explain me step by step how to know the status of the concurrent program from back end in oracle apps.
Thanks,
Raj

When a record is being updated by a form, if you create a Pre-Update trigger on the block, the trigger will run for each record being updated.
Same thing happens with a Pre-Insert and Pre-Delete trigger.

Similar Messages

  • How to terminate all Concurrent Programs from back end

    Hi,
    Can any one tell me how to terminate all Running Concurrent Programs from back end

    post this in the EB forum;
    also, investigate the built-in package fnd_concuurent
    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;
    /

  • Calling a concurrent program from back end in Apps

    How to call a Java stored procedure from back end? Can it be called using FND_REQUEST.SUBMIT_REQUEST?

    Yes - as long as it is defined as a concurrent executable and program, FND_REQUEST.SUBMIT_REQUEST can be used.
    MOS Doc 221542.1 - Sample Code for FND_SUBMIT and FND_REQUEST API's
    HTH
    Srini

  • How to check the all scheduled concurrent programs.

    Hi All,
    APPS : 11.5.10.2
    DB:9.2.0.8
    how to check the all scheduled concurrent programs at a time, is their any script for this?
    Thanks a million in advance.

    Hi,
    Please refer to the following threads.
    How to know The request is scheduled or not??
    How to know The request is scheduled or not??
    Need Report or Query to see all scheduled jobs
    Need Report or Query to see all scheduled jobs
    Regards,
    Hussein

  • How to create single user and bulk users from back end in ebs r12?

    Hi all,
    how to create users from back end in oracle application R with responsibilities?
    Thanks in Advance,
    Sandeep
    Edited by: user2584435 on 17 Nov, 2009 11:14 PM
    Edited by: user2584435 on 17 Nov, 2009 11:14 PM

    Hi,
    I have created user san1 with below mention pkg and added sysadmin with below mention pkg.
    BEGIN fnd_user_pkg.CreateUser(x_user_name =>'san',
    x_owner =>'CUST',x_unencrypted_password => null,
    x_description => 'new_desc2',x_email_address => '',x_fax => '');
    end;
    DECLARE
    v_user_name VARCHAR2(30) := upper('&Enter_User_Name');
    BEGIN
    fnd_user_pkg.addresp(username => v_user_name
    ,resp_app => 'SYSADMIN'
    ,resp_key => 'SYSTEM_ADMINISTRATOR'
    ,security_group => 'STANDARD'
    ,description => 'Auto Assignment'
    ,start_date => SYSDATE - 10
    ,end_date => SYSDATE + 1000);
    END;
    Q. I am able to login but dont having any responisibility,why?
    Regards
    Sandeep.

  • How to know the status of stream played using NetStream.Play method ?

    I am playing stream data published by third party server
    similar to FCS by creating NetStream object and calling Play method
    on it. Now the problem is, sometimes I am not able to view the
    published stream by playing it using Play method. Also it does not
    call OnStatus method of NetSteam. How can I know the status(or
    result) of Play method ?
    Note: NetConnection gets created successfully. I get status
    of NetStream.Play.Start / Stop when I put local flv as a first
    parameter to Play method

    Hi
    There are SQL reports in the following zip which has SQLDeveloper reports for runtime objects such as mappings and process flows;
    http://www.oracle.com/technology/products/warehouse/htdocs/Experts/owb_sqldeveloper.zip
    Cheers
    David

  • JSms 2.1.6:- how to know the status of message sent through GsmSmsService

    hi,
    i am using jSms 2.1.6
    can any one help in knowing the status of the messege which i sent through GsmSmsService,
    wheather messege reached the destination or not
    is there any way to know this
    please it is urgent
    nalin

    I need jsms 2.1.6 package.
    could you send that file?

  • How to know the status of workflow?

    Hi all,
    When i create a Sales order in VA01 my workflow should get triggered.
    When the workflow status is 'In progress' the user should not be allowed to change the sales order that was created.
    How to do this and in which table can i get the status of a particular workflow.
    Regards,
    Gautham P

    Don't check any tables. The tables have changed between versions.
    Use two of the function modules from the workflow API instead.
    1) SAP_WAPI_WORKITEMS_TO_OBJECT to find the work items in which the object (your sales order BOR object) is used.
    2) SAP_WAPI_GET_WORKITEM_DETAIL to find work item status and more.

  • How to know the status of equipment on a particular date

    hi experts,
                   when we go to IE02 t.code there is a field showing the status of the equipment on particular date( Valid from and valid to ). If it is assigned to a particular functional location its status is displayed INST and its not assined its AVBL . Can i know from which table i can get the status of the equipment on particular date.

    hi expert,
                 I could not get the status whether it is AVLB  or INST from those table, i could see who has changed it.Could you be a bit clear regarding it

  • Creating a connection between the GUI and a program's back end

    I have created a program (over 50 classes) and am currently a little confused as to how I should connect the back end of my program (the real functionality) to my front end (the GUI). Currently I am thinking about using a list of event listeners in my back end that will announce when certain events have completed and thus front end can handle the updates accordingly.
    But I want to ensure that the back end doesn't "know" about the front end. In other words, I would like to ensure that the back end and the front end are as independent/modular as possible.
    Can anyone make some suggestions besides event listeners?
    Thanks,
    Timmers

    From what I am able to ascertain from your post, you would advocate using EventListeners in the back end (in same VM) to inform the GUI of changes?
    Is this the commonly accepted way of communicating your back end functionality to your front-end (GUI)?
    I've read that all EventListeners are part of a single thread. So what happens if two events occur simulataneously in the back-end. Do those events get queued or do some of them get lost?
    Thanks,
    Tim
    If the back-end changes state asynchronously to the
    front-end GUI (ie does work in background threads and
    then notifies the front-end when something happens),
    then you should make it send events when this happens.
    The basic concept is the same for CORBA, RMI, JINI,
    or running everything in the local VM.
    To do this you define a set of events (or maybe you
    can use the java.beans.PropertyChangeEvent) and
    listener interfaces. The front-end then registers to
    receive events (probably via an addXXXListener()
    method in the back-end). You would have to have a
    class (or classes) in the front-end that implemented
    the event listener interfaces to receive the events.
    If you are using a distributed technology (CORBA, RMI,
    JINI, ...) the concept is the same, but the event
    mechanisms are slightly different.
    To notify the back-end of state changes in the
    front-end you probably can just do plain old method
    calls from the front-end to the back-end.

  • How to call the show method of Popup from backing bean?

    Hi!
    I wanted to display the results of a search form in a dialog that is placed in popup.
    That is The content of the popup will be rendered from the backing bean, dynamically .
    And so when the form is filled and the submit button is clicked, the form fields have to be submitted to the server, and the results are to be displayed in the dialog,after the PPR response has arrived, and not at the time of calling the PPR.
    Could you explain How this can be achieved?
    Samba

    Samba,
    The fix for the popup in a template is to give the template an id say "template" and reference the popup in the JavaScript as "template:popupId", where popupId is the value of the af:popup's id attribute.
    Regarding DWR, Joe really did a nice job with this framework. I have to say he got my attention. The one issue though is that JavaScript is an absolute must when using DWR and other frameworks that have a heavy JavaScript tilt. Dealing with JS can be a bit of a hassle due to x-browser idionsyncrascies as well as slow exection of JS. That said I believe Joe has one of the best JS solutions around.
    On the flip side of this ADF Faces is trying to do something a bit different. Firstly, we want to avoid JS. The user should handle as little as JS as possible. In addition,
    ADF Faces has the benefit of a server-side component framework we want to leverage this to make sure there is a limited amount of JS execution on the client.
    So if you want to work with JS, DWR is a good solution. If you want to work with, Java, standards, and a great tooling environement ADF Faces is a better choice.
    Finally, "Reverse AJAX" is a marketing term for "Push". You probably have also heard the term Comet. There are some varations on the protocols used but all-in- all. We are talking about one thing, the ability for the server to "Push" information to the client. Luckily, we provide this ability in a feature called active data channels. You will see this feature in the next preview. By setting an attribute value in a pageDef trees, tables, and BAM components can recieve data from the server via "Push".
    Thanks,
    Ric

  • Submitting concurrent request from back end.

    Hi guys,
    I am submitting the concurrent request using fnd_request.submit_request ,passing start time as Sysdate.
    When i submit the program in scheduling section of concurrent program,the Requested start date defaults to current date but hours and minutes are 00:00:00.Can we make it to run AS soon as Possible?
    Thanks
    Edited by: 954506 on May 27, 2013 10:02 PM

    Hi,
    either you use fnd_request or concsub
    skip the parameter start time to submit the request immediately
    Regards,
    Haafiz

  • How to know the nos. and variable name from Jframe ?

    Hello Everyone,
    I have just started java programming. I have one form (using jframe) and there are nos. of components like text field, radio buttons, list box, buttons etc.).
    I want to know nos. and type of components (text field, radio buttons, button etc..) and variable name of these components ?
    Is there any way class / method or technique for the same ?
    With Thanks !
    Prashant Shukla

    Since if you are dealing strictly swing here, and no mixed in awt, all you have is JComponents, then where's the problem ... why do you even need to know which JComponent it is?
    This what you have?
    class StuffWithListeners  extends JFrame  implements ActionListener, KeyListener {
      StuffWithListeners() {
        jb = new JButton("GO");
        ta = new JTextArea(10,20);
        jb.addActionListener(this);
        ta.addKeyListener(this);
      public void actionPerformed(ActionEvent ae) {
      public void KeyPressed(KeyEvent ke) {
    }Edited by: abillconsl on Dec 14, 2007 5:23 PM
    null

  • How to infer the status of MView/Refresh from LAST_REFRESH_DATE

    Hi,
    I am having a MView "MV_SCI_COLLATERAL_INFO" in Production. It is working fine in development environment.
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    "CORE 11.2.0.3.0 Production"
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    CREATE MATERIALIZED VIEW MV_SCI_COLLATERAL_INFO
      BUILD IMMEDIATE
      USING INDEX
      REFRESH FORCE ON DEMAND START WITH SYSDATE+0 NEXT SYSDATE + 5/1440
      USING DEFAULT LOCAL ROLLBACK SEGMENT
      USING ENFORCED CONSTRAINTS DISABLE QUERY REWRITE
      AS SELECT * FROM COLLATERAL_INFO@BLINK;
    SELECT mview_name, last_refresh_date, refresh_method, invalid, UNUSABLE
      FROM all_mview_analysis
    WHERE mview_name IN ('MV_SCI_COLLATERAL_INFO');
    MVIEW_NAME
    LAST_REFRESH_DATE
    REFRESH_METHOD
    INVALID
    UNUSABLE
    MV_SCI_COLLATERAL_INFO
    23-JUN-13 01:26:53
    FORCE
    N
    N
    Job Details:
    Job
    Log_user
    Privilege_User
    Schema_User
    Last_Date
    This_Date
    Next_Date
    Total_Time
    Broken
    Interval
    Failures
    What
    166
    OCCSS_BOWBMS_HK
    OCCSS_BOWBMS_HK
    OCCSS_BOWBMS_HK
    6/23/2013 1:26
    6/23/2013 1:31
    6/23/2013 1:31
    4272898
    N
    SYSDATE + 5/1440
    0
    dbms_refresh.refresh('"OCCSS_BOWBMS_HK"."MV_SCI_COLLATERAL_INFO"');
    I believe the MView is valid. And it is scheduled to run for every 5 minutes. But from the last refreshed date i couldn't see the latest date. Am i infering the column wrong?
    Isn't my MView refreshing on every 5 minutes? In the event of any errors, how to check?

    you have created the MVIEW with option "REFRESh FORCE ON DEMAND" which means that it will not refresh the MVIEW automatically.
    Specify ON DEMAND to indicate that database will not refresh the materialized view unless the user manually launches a refresh through one of the three DBMS_MVIEW refresh procedures.

  • How to Terminate the Session of Running program from other program

    I need to Terminate the session of the user using a particular program by running a other z program.

    Use the function module TH_DELETE_USER.
    Welcome to SDN.  Please remember to award points for helpful answers.  Thanks.
    Regards,
    Rich Heilman

Maybe you are looking for

  • Use one iTunes Library for both my MacBook and Mac Mini

    Hi, I want to make a few changes in my configuration, but before something will go terribly wrong, I want to make sure I use the correct approach. Yesterday I got a and on an older Mac Mini Model (G4 - only 40GB hard disc). It runs Leopard. It does n

  • [SOLVED] upgrade using Octopi system will not boot into DM

    I did a system upgrade using Octopi late last night. I use Enlightenment and Gnome. After the upgrade the desktop froze (E), so I switched to a vt and rebooted. That failed to work, so I forced power off using the power button and went to bed. The ne

  • Using HP Monitor with Macbook

    Just connected my MacBook to HP monitor. Everything seems to work fine except I cannot get Address Book to appear on monitor. It appears on the MacBook but not on the monitor. Can anyone help please?

  • Drill down in Q&A?

    Hi, Does Q&A understand the semantics of drill down yet? It is any my model but Q&A doesn't seem to recognize it. Thanks...Steve

  • ITunes account in another country

    When I was living in the US, I got a US iTunes account linked to a US credit card. I've since moved to Japan, and apparently I can't buy at the Japanese iTunes store with a US credit card even after I've changed the credit card's billing address to J