How to pick up sid, serial# for a concurrent request

I am trying to find a sid, serial# for a concurrent request; any suggestions/scripts?
Thanks in advance,

Found it on metalink:
ACCEPT req_id PROMPT 'Enter the request id: '
SELECT a.request_id, d.sid, d.serial#
FROM apps.fnd_concurrent_requests a,
apps.fnd_concurrent_processes b,
v$process c,
v$session d
WHERE a.controlling_manager = b.concurrent_process_id
AND c.pid = b.oracle_process_id
AND c.serial# = d.serial#
AND a.request_id = &req_id
AND a.phase_code = 'R';

Similar Messages

  • How do i find the serial # for my cs5.1 upgrade, my new laptop doesn't have a dvd player.

    how do i find the serial # for my cs5.1 upgrade.  my new laptop doesn't have a dvd player.

    Gmavaughn for information on how to locate your serial number please see Find your serial number quickly - http://helpx.adobe.com/x-productkb/global/find-serial-number.html.
    You can also download a fresh copy of the Creative Suite 5 installation files at http://helpx.adobe.com/creative-suite/kb/cs5-product-downloads.html.

  • How to find the creation date for a released requests..

    Hi friends ,
    In se09 tcode , we a date which represents the last changed date .. Now , for a particular Released request i want to find out the Creation date for it . How can i find it . I checked the tables like E070create there also we have requests that not released yet , i have also checked se03 and other tcode and a fn mo dules like TR_READ_GLOBAL_INFO_OF_REQUEST .
    So how to find the creation date for a released requests. Iam waiting for ur inputs..
    Thanks in advance..

    hi,
    Did u found the way to get the request creation date?
    I also need the same information.
    This needed for audit purpose........so it is must.
    Please help me in this.
    Best regards,
    vinod

  • The output file  for your concurrent request is not initialized

    Application: Application Object Library(FND)
    Component Type: SERVICE_INSTANCE
    Component Name: Standard Manager(STANDARD)
    /*The output file for your concurrent request is not initialized.
    Cause: Your concurrent program execution was not preceded by calls to standard
    Application Object Library routines to initialize concurrent processing. FDPFOP
    received a return code of failure.
    Action: Change your concurrent program to initialize files by calling standard
    Application Object Library routines. */
    I got the mail with the above message from System ( Oracle Applicaitons Release 12.1.1)
    I have checked the following metalink document
    The Output File For Your Concurrent Request is Not Initialized: FDPFOP received a return code of failure [ID 296830.1]
    I can not undestand, why the alert sends mail?
    Could you please let me know..what happened to standard manager? how to resolve the above issue? why the above alert happened?
    The above meatlink note did not help much....

    Hi;
    >
    /*The output file for your concurrent request is not initialized.
    Cause: Your concurrent program execution was not preceded by calls to standard
    Application Object Library routines to initialize concurrent processing. FDPFOP
    received a return code of failure.
    Action: Change your concurrent program to initialize files by calling standard
    Application Object Library routines. */
    The Output File For Your Concurrent Request is Not Initialized: FDPFOP received a return code of failure [ID 296830.1]
    I can not undestand, why the alert sends mail? Could you please let me know..what happened to standard manager? how to resolve the above issue? why the above alert happened?I checked related note and it mention its internal bug which mean we cant say too many thing about issue.
    The above meatlink note did not help much....It helped or not? Issue still appear or not?
    Please run adadmin utulity >> from Maintain Applications Files>> Relink Applications programs
    Be sure it wont through any error message than retest issue
    Regard
    Helios

  • Concurrent manager encountered an error while running sql*plus for your concurrent request create internal order

    Hi
    We have a big problem, We can't create internal orders, when I run the CREATE INTERNAL ORDER, it finish with ERROR:
    Concurrent Manager encountered an error while running SQL*Plus for your concurrent request 134980682.
    Review your concurrent request log and/or report output file for more detailed information.
    this is the log:
    +---------------------------------------------------------------------------+
    Purchasing: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    POCISO module: Create Internal Orders
    +---------------------------------------------------------------------------+
    Current system time is 26-JUL-2013 09:21:09
    +---------------------------------------------------------------------------+
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    Begin create internal sales order
    Updating Req Headers
    14 Reqs selected for processing
    Top of Fetch Loop
    Source Operating Unit: 82
    Selecting Currency Code
    Currency Code : MXP
    Selecting Order Type
    Order Type ID:1001
    Selecting Price List from Order Type
    Deliver To Location Id: 196
    Inserting Header : 3908784
    Getting the customer id
    Getting the customer id: 15334
    Unhandled Exception : ORA-01403: no data found
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    Concurrent Manager encountered an error while running SQL*Plus for your concurrent request 134980682.
    Review your concurrent request log and/or report output file for more detailed information.
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Output file size:
    78
    Output is not being printed because:
    The print option has been disabled for this report.
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 26-JUL-2013 09:21:14
    +---------------------------------------------------------------------------+
    Some suggestion for resolve it??
    Thanks & Regards.

    In the document 294932.1 Section 4 there are no pre-installation patches or update for OS RedHat LinuxAS4.
    When I type echo $LD_ASSUME_KERNEL it doesn't display any value so do I need to set the LD_Assume_Kernal value manually.
    If yes, please let me know the path and command to set the kernel value.
    Thanks
    Amith

  • Error while getting the ORACLE user account for your concurrent request

    Hi ,
    When I am submitting the Concurrent Program from OAF page Iam getting
    Error
    Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator.
    When we will face this error.
    Not able to submit the Request
    Krishna

    Krishna
    Try like this
    public int submitCPRequest(String shipmentId) {
    System.out.println("into submitCPRequest");
    try {
    OAApplicationModule am = pageContext.getApplicationModule(webBean) ;
    OADBTransaction transaction = am.getOADBTransaction();
    Connection conn = transaction.getJdbcConnection();
    ConcurrentRequest cr = new ConcurrentRequest(conn);
    cr.setDeferred();
    String applnName = new String("XXAPL"); //Application that contains the concurrent program
    System.out.println("ApplName"+ applnName);
    String cpName = new String("SHIP_REQ"); //Concurrent program name
    System.out.println("Concc Name"+ cpName);
    // String cpDesc = new String("Shipping Request"); // concurrent Program description
    // Pass the Arguments using vector
    // Here i have added my parameter headerId to the vector and passed the
    //vector to the concurrent program
    Vector cpArgs = new Vector();
    cpArgs.addElement(shipmentId);
    System.out.println("Args"+ cpArgs);
    After this it is going into exception
    // Calling the Concurrent Program
    int requestId = cr.submitRequest(applnName, cpName, null, null, false, cpArgs);
    System.out.println("Req Id"+ requestId);
    tx.commit();
    return requestId;
    catch (SetDeferredException e)
    throw new OAException("SetDeferredException " + e.getMessage(),OAException.ERROR);
    catch (RequestSubmissionException e) {
    System.out.println("Into Exception");
    OAException oe = new OAException(e.getMessage());
    oe.setApplicationModule(this);
    throw oe;
    }Thanks
    AJ

  • Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator

    Dear Techies,
    We have registered an Extra Information Type as self service OAF page and did some validations using user hook which are working fine. But for some requests EIT creation page is throwing below errors.
    1. Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator.
    2. An unexpected situation occurred while executing routine FND_DATA_SECURITY.GET_SECURITY_PREDICATE_HELPER.The cause was: The parameter 'p_object_name' cannot be 'GLOBAL'.
    System throws these errors whenever user hook suppose to throw our customized validation messages.Since we are at UAT instance, we are bouncing apache and oacore to get rid of these errors every time they appear. But we cannot bounce once it is moved to production.
    Kindly share some ideas  to fix these errors as we are very close to Go-Live and we are facing this issue with all EIT's and SIT's.
    Thanks and Regards
    Dileep Kumar.

    Hi Mahesh,
    Thanks for reply.
    I have gone through the link that you have suggested. But our EIT user hook validations doesn't  have any code related to submission of concurrent programs. More over our error is not stable. If we bounce the apache and oacore, the system will work fine without unexpected errors for some time. We are not even able to replicate these errors.
    Thanks and Regards
    Dileep Kumar.

  • How to find sid,serial# for sql in v$sqlarea

    Hi,
    10gR2
    in order to dig down the session which is running particular sql
    say querying v$sqlarea and getting sql_id
    now how to map it to v$session

    thanks for the reponse
    Join v$sqlarea's address with v$session's sql_address.
    does this always mapped, even if sql has completed execution
    say i have made a session of user scott
    and ran this statement
    ===================================
    SQL> create table my_obj as select * from obj;
    Table created.
    now i jhave another session of sys to find session details
    ============================================
    SQL> select SQL_ID,EXECUTIONS,DISK_READS,BUFFER_GETS,ADDRESS,CPU_TIME,PROGRAM_ID,SQL_TEXT
    FROM GV$SQLAREA WHERE SQL_TEXT LIKE ' 2 %MY_OBJ%';
    SQL_ID     EXECUTIONS DISK_READS BUFFER_GETS ADDRESS      CPU_TIME
    PROGRAM_ID
    SQL_TEXT
    4hshv4csmh7d8     1     0     14 000000007ECDF248 2899
         0
    select SQL_ID,EXECUTIONS,DISK_READS,BUFFER_GETS,ADDRESS,CPU_TIME,PROGRAM_ID,SQL_
    TEXT FROM GV$SQLAREA WHERE SQL_TEXT LIKE '%MY_OBJ%'
    SQL> select sql_address ,sid,serial#,username from v$session where sql_address='000000007ECDF248';
    no rows selected
    SQL> select sql_id ,prev_sql_id ,sql_address ,sid,serial#,username from v$session where sql_id='4hshv4csmh7d8';
    no rows selected
    SQL> select sql_id ,prev_sql_id ,sql_address ,sid,serial#,username from v$session where prev_sql_id='4hshv4csmh7d8';
    no rows selected
    please suggest
    another other view
    or there may be two cases of this
    case1 sql is running
    case 2 sql is completed

  • How do I deactivate the serial for my Final Cut Pro?

    Hello, I have decided to sell my Mac Book Pro and am wondering how to deactivate the serial number for it. I have the serial for my version of fcp 6.0 on two computers already, I would like to be able to put the serials I purchased onto one of my own computers sometime in the future. I have already deactivated and uninstalled all of my Adobe products, but it is not obvious in FCP how this is done. This same problem exists for DVD Studio Pro... can anyone help?

    Great minds think alike!
    You never know how much other personal info resides on a computer, keychains, passswords, internet histories and caches, address books, etc, etc.
    Put in the install disc, boot from it, erase the hard drive, do the install from however many discs it takes, and when they tell you to restart your computer to finish the install process, just shut it down (no restart.)
    The buyer will boot it and get all the registration info etc, just like it was a new machine right from the factory. (Thanks to Brian Connor for that install tip.)

  • How to Disable client side validation for the message text input

    Hi,
    I have scenario where i need to by pass the client side validation for a message text input
    Scenario is
    I have a message text input field(say XYZ), i set the max length for the item as 20
    Now when im trying to enter the greek characters into it, it is allowing me to enter till 20 characters
    But when i try to submit the form ..my client side validation is firing..
    The Error says the XYZ is too long
    The problem is, in greek each character takes two bytes.(In english it is only 1).While entering the content it allowing 20 characters and when validating it is checking for bytes(if we enter in greek the length will be 40 bytes not 20)
    I cannot increase the max length .coz i have restrict the character length to 20 only.(english or Greek).
    Please help me in this regard.
    Regards
    Sandeep.

    Thanks for the information.But we dont have any option either declaratively or programatically to disable the client side validation for the message text input..I referred java docs ..i dint find any method which does..
    Correct me if im wrong

  • How to get client side validation for double range and double field in stru

    Hi,
    I have achieved client side validation by using <html:javascript formName=""/>
    All fields shows client side validation but double field and double range field is not shows client side validation but shows server side validation.
    I am using Liferay jboss server.
    Please tell me a way to achieve client side validation for double field and double range.
    Thanks & Regards,
    Brijesh Baser

    I see in the query component there is a QueryListener and a QueryOperationListener. Have you tried letting Jdeveloper create methods for these in some backing bean, and putting in some debug code to see when these methods run? I would think one of them could very well be used to validate the input, somehow; if the input were bad you could just raise an exception and pass your error message, I bet.
    If not...
    I am pretty sure that there is an appendix in the Fusion Developer's Guide for Forms developers turned to Java...you might look at what it says for post query. I know in the 10.1.3.0 equivalent documentation, they gave reference to a method in the ViewObject which fired for each record after a query was run. You could definitely intercept this query return from there. In fact doing something like this may be something like what Frank N. was intending when he mentioned ViewObjects "validation". Not sure though. I am still learning what new features there are in 11g adf/bc.
    Good luck.

  • How to get Log and Output File Names for a concurrent request

    Hi,
    I am submitting a concurrent frm OAF with the following code in AM
    try{
    OADBTransaction tx = getOADBTransaction();
    Connection conn = tx.getJdbcConnection();
    ConcurrentRequest cr = new ConcurrentRequest(conn);
    Vector parameters = new Vector();
    parameters.addElement("10");
    nRequestID= cr.submitRequest("CIE","DTFEMP","","",false,parameters);
    tx.commit();
    }catch(RequestSubmissionException e)
    How do i get the handle to log and output files for the abvoe concurrent request ?
    One more thing is there a way where we can evaluate the environment variables
    like in the above example once i get a the request id
    logfile = $APPLCSF/$APPLOUT/"l"+requestID+".log"
    and
    outputfile=$APPLCSF/$APPLOUT/"o"+requestID+".out"
    is there a way i can get the values of $APPLCSF and $APPLOUT from the os ?
    Thanks
    Tom...
    Thanks
    Tom ...

    You can query the Fnd_Concurrent_Requests table using Request_ID, which has the log & out file directory details.
    Hth
    Srini

  • How to add comment on the top of concurrent request report

    We have developed customize reprot. This reprot parameter are mapped in very wide area in term of functionality, therefore i want to put some remarks/comment for end-user, so he can put the parameter accordingly.
    Thanks.

    We want to display the content on the top of concurrent request Programm instead of Report. when we register concurrent programm with the multiple parameter but no have any comment/reprot option to be displayed at the top of programm while submitting request which help user as hole concurrent comment.
    thanks.

  • How to configure server side discovery for email account configuration as an email provider ?

    Hello,
    I would like to know if there is any way to provide configuration settings for a regular (not Exchange) email account on server side (email provider side) ?
    iPhone is supporting autodiscover for Exchange but doesn't seem to support it for regular POP or IMAP mail accounts.
    I would like to avoid going through Profiles.
    Regards,

    A further restriction of team workspaces and their inbox is that you cannot write mails on behalf of the tws's address.
    Also, you cannot define aliases on the inbox of a tws. There is an open ER 8824582: CREATE AN ALIAS FOR A TEAM WORKSPACE'S EMAIL ADDRESS
    Furthermore, you need to wait for 2.1 to have IMAP access on tws's (we definitely hope 2.1 will bring this feature).
    All this brought us to the decision of not using tws's inboxes at all (not defining mail addresses for them), and use (pseudo) personal workspaces and delegation for functional inboxes.
    HTH, Thomas

  • How do I find my serial # for LR?

    I subscribed to PS and LR through CC and downloaded them from there.  Now LR is asking for a serial #, and I can't find one.  I've been through the suggested process and it isn't working for me.  When I select My Products and Services, it says I have no registered products.

    There is no serial number needed for CC products. 
    If LR is asking for a serial number, then you have the non-CC version installed.  Uninstall that, quit the CC Desktop application, restart it, and look in the CC Desktop list of Apps for LR.  That is the version you need to install.  It is licensed any time you’re logged into the CC Desktop.

Maybe you are looking for

  • Can no longer manage my files....

    I recently had some computer issues, ended up having to format my whole computer ect. I used to manage all of my music manually instead of syncing it. I would just select songs the I wanted and place them in the iphone. Now when I hook up my iPhone i

  • How do I get past the "I'm not a robot" phase of the setting up a Sync account procedure?

    Is there another way to set up an account without going through the 'I'm not a robot' phase of the process. I cannot get the correct answer after 30 minutes of trying.

  • SPAM error in PREPARE

    Experts, I am getting SPAM error in SPAM_CHK_INI  phase..The message came to update the SPAM level to latest.I did for the latest one for SPAM in 4.7 620 version..but after running PREPARE phase throwing error...I am attaching the log..Please help..I

  • Cant see the the captured video

    I am trying to capture in CS6 from a HDV camera, I can see all the info as if the footage is being captured, but nothing  gets captured. What am i doing wrong can anyone help

  • Unable to uninstall HPS

    Hi, Anyone ever encountered this problem when trying to uninstall any hyperion product? A suitable JVM could not be found. Please run the program again using the option -is:javahome <JAVA HOME DIR> Thanks.