Error While Submitting Concurrent Program

Hi all,
While submitting Concurrent Program in HRMS to check the Seeded Output,I am getting the following Message
app-fnd-00314 invalid printer ( not print ) and print style (ZA PS Portrait) combination.
Could someone please tell me How could I figure it out.
Thanks & Regards

914618 wrote:
Hi all,
While submitting Concurrent Program in HRMS to check the Seeded Output,I am getting the following Message
app-fnd-00314 invalid printer ( not print ) and print style (ZA PS Portrait) combination.
Could someone please tell me How could I figure it out.
Thanks & RegardsWhat is the type of the concurrent program?
Are you printing to specific printer or to noprint?
Please see the solution in these docs.
Accrual Reconciliation Report Errors With APP-FND-00314 Invalid Printer And Print Style Combination [ID 564009.1]
Cash/Bank Book Report Error APP-FND-00314: "invalid printer and print style inloc_bacs” [ID 551975.1]
Quarterly Tax Return Worksheet (Form 941) Fails With APP-FND-00314 [ID 307701.1]
Thanks,
Hussein

Similar Messages

  • Error while submitting concurrent request

    Hi All,
    I am getting error while submitting this concurrent request (To handle deliver, RTR, RTV transactions)
    Error : app-fnd-00874: Routine FDFBDF found no rows in table FND_DESCRIPTIVE_FLEXS. Please contact your system administrator or support
    representative
    what is this error and how can i slove this problem?
    Thanks
    V.Arumugam

    Hi,
    We had same problem in GL while upgradation.
    Some flexfields were missing in the fnd descriptive flexfield.
    We could resolve later with help of metalink.
    Plz refer metalink note : Note:363117.1 and Note:290411.1
    Rgds,
    Arumugam S.

  • Issue while submitting concurrent program from OAPage

    Hi Team,
    In OApage in One LOV field is der. From that LOV we need to select one concurrent program and click next button. while clicking on the next button i am getting error like  below
    The data that defines the flexfield on this field may be inconsistent.
    Inform your system administrator that the segment referred to by the flexfield bind variable
    :$FLEX$.PFCPA_JOB_NUMBER.ID:NULL could not be found.
    Make sure this variable references the segment or value set name of a prior segment
    in the flexfield structure. This flexfield bind variable is in either a WHERE clause in a table-validated value set,
    or in a default value for one of the segments of this flexfield.
    Please help me in this issue.
    Thanks,
    Rajashekar

    Hi Team,
    In OApage in One LOV field is der. From that LOV we need to select one concurrent program and click next button. while clicking on the next button i am getting error like  below
    The data that defines the flexfield on this field may be inconsistent.
    Inform your system administrator that the segment referred to by the flexfield bind variable
    :$FLEX$.PFCPA_JOB_NUMBER.ID:NULL could not be found.
    Make sure this variable references the segment or value set name of a prior segment
    in the flexfield structure. This flexfield bind variable is in either a WHERE clause in a table-validated value set,
    or in a default value for one of the segments of this flexfield.
    Please help me in this issue.
    Thanks,
    Rajashekar

  • Getting Error While Attaching Concurrent Program Output PDF file for POAPPRV Workflow

    Hi All,
    I am getting the below error when I am trying to attach concurrent program output to the PO Approval Notification.
    An Error occurred in the following Workflow.
    Item Type = POAPPRV
    Item Key = 1040589-528378
    User Key =945871
    Error Name = WF_ERROR
    Error Message = [WF_ERROR] ERROR_MESSAGE=3835: Error '-20002 - ORA-20002: [WFMLR_DOCUMENT_ERROR]' encountered during execution of Generate function 'WF_XML.Generate' for event 'oracle.apps.wf.notification.send'. ERROR_STACK=
    Wf_Notification.GetAttrblob(3604701, ZZ_PREVIOUS_PO_COMPARE, text/html)
    WF_XML.GetAttachment(3604701, text/html)
    WF_XML.GetAttachments(3604701, http://oraerp.am.corp.xxxx.com:8099/pls/DEV, 11283)
    WF_XML.GenerateDoc(oracle.apps.wf.notification.send, 3604701)
    WF_XML.Generate(oracle.apps.wf.notification.send, 3604701)
    WF_XML.Generate(oracle.apps.wf.notification.send, 3604701)
    Wf_Event.setMessage(oracle.apps.wf.notification.send, 3604701, WF_XML.Generate)
    Wf_Event.dispatch_internal()
    Error Stack =
    Activity ID = 190844
    Activity Label = AL_NOTIFY_APPROVER_PROCESS:ZZ_PO_PO_APPROVE_ATTCH
    Result Code = #MAIL
    Notification ID = 3604701
    There are several threads for this error however I cannot find any specific solution to the problem.
    Please find the code below -
        wf_engine.setitemattrdocument(itemtype=>itemtype,
                                      itemkey=> itemkey,
                                      aname=>'ZZ_PREVIOUS_PO_COMPARE',
                                      documentid =>'PLSQLBLOB:zz_po_reqapproval_init1.xx_notif_attachments/' || to_char(l_request_id_prev_po)||':'||to_char(l_document_num));
    -- here l_request_id_q_and_s is the request id of the program and l_document_num is the PO document number
    PROCEDURE xx_notif_attachments(p_request_id    IN VARCHAR2,
                                   p_document_num  IN VARCHAR2,
                                   p_document      IN OUT BLOB,
                                   p_document_type IN OUT VARCHAR2) IS
      v_lob_id          NUMBER;
      v_document_num    VARCHAR2(15);
      v_document_prefix VARCHAR2(100);
      v_file_name       VARCHAR2(500);
      v_file_on_os      BFILE;
      v_temp_lob        BLOB;
      v_dest_offset     NUMBER := 1;
      v_src_offset      NUMBER := 1;
      v_out_file_name   VARCHAR2(2000);
      v_conc_prog_name  VARCHAR2(500);
      v_conc_req_id     NUMBER;
      CURSOR get_output_file(p_concurrent_request_id NUMBER) IS
        SELECT cr.outfile_name, cp.concurrent_program_name
          FROM fnd_concurrent_requests cr, fnd_concurrent_programs_vl cp
         WHERE request_id = p_concurrent_request_id
           AND cp.concurrent_program_id = cr.concurrent_program_id;
    BEGIN
      --    set_debug_context('xx_notif_attach_procedure');
      v_conc_req_id  := to_number(substr(p_request_id,
                                         1,
                                         instr(p_request_id, ':') - 1));
      v_document_num := substr(p_request_id,
                               instr(p_request_id, ':') + 1,
                               length(p_request_id) - 2);
      OPEN get_output_file(v_conc_req_id);
      FETCH get_output_file
        INTO v_out_file_name, v_conc_prog_name;
      CLOSE get_output_file;
      v_out_file_name := substr(v_out_file_name,
                                instr(v_out_file_name, '/', -1) + 1);
      v_file_name     := to_char(v_document_num) || '-Previous_PO_Rev.pdf';
      utl_file.fcopy(src_location  => 'APPS_OUT_DIR',
                     src_filename  => v_out_file_name,
                     dest_location => 'PO_DATA_DIR',
                     dest_filename => v_file_name);
      --  v_lob_id := to_number(v_document_id);
      v_file_on_os := bfilename('PO_DATA_DIR', v_file_name);
      dbms_lob.createtemporary(v_temp_lob, cache => FALSE);
      dbms_lob.fileopen(v_file_on_os, dbms_lob.file_readonly);
      dbms_lob.loadblobfromfile(dest_lob    => v_temp_lob,
                                src_bfile   => v_file_on_os,
                                amount      => dbms_lob.getlength(v_file_on_os),
                                dest_offset => v_dest_offset,
                                src_offset  => v_src_offset);
      dbms_lob.fileclose(v_file_on_os);
      p_document_type := 'application/pdf;name=' || v_file_name;
      dbms_lob.copy(p_document, v_temp_lob, dbms_lob.getlength(v_temp_lob));
    EXCEPTION
      WHEN OTHERS THEN
        wf_core.CONTEXT('ZZ_PO_REQAPPROVAL_INIT1',
                        'xx_notif_attachments',
                        v_document_num,
                        p_request_id);
        RAISE;
    END xx_notif_attachments;
    Please help me find a to the above mentioned error.
    Thanks,
    Suvigya

    There are two ways to look at what error the PLSQLBLOB API is throwing.
    1) Call your PLSQLBLOB API GNE_PO_CREATE_FILE_ATTACHMENT.Gne_Create_File_Attachment directly from a PLSQL block and verify that it returns the BLOB data successfully.
    You could also call another WF API that in turn executes the PLSQLBLOB API internally. For example,
    <pre>
    declare
    l_document blob;
    l_doctype varchar2(240);
    l_aname varchar2(90);
    begin
    dbms_lob.CreateTemporary(l_document, true, dbms_lob.Session);
    -- 207046 - This is the notification id of your failed workflow
    -- PO_REPORT - Document type attribute
    -- 'text/html' - Content Type being generated for
    Wf_Notification.GetAttrBLOB(207046, 'PO_REPORT', 'text/html', l_document, l_doctype, l_aname);
    -- Print the size of the document here to verify it was fetched correctly
    end;
    </pre>
    2) Turn on log for SYSADMIN user with following attributes.
    Log Enabled = TRUE
    Log Level = ERROR
    Log Module = wf.plsql%
    Restart the Workflow Deferred Agent Listener and Workflow Notification Deferred Agent Listener and run your workflow process. Search for log messages written for above context and you can identify the error at wf.plsql.WF_XML.GetAttachment module with message starting as "Error when getting BLOB attachment ->"
    Hope this helps.
    Vijay

  • Error while running concurrent program in Release 12.0.6

    Hi All,
    We are running many requests of a concurrent program in parallel in Oracle Applications Release 12.0.6 and many requests are erroring out with the below error message :
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 15 (X_QueryTree)
    Resource id in failed request: 0x7400001
    Serial number of failed request: 532
    Current serial number in output stream: 532"
    Could someone please advise as to what could be the issue here.
    This is happening in production instance
    Thanks

    we are getting the same error in 11.5.10 oracle apps!
    Current system time is 19-MAR-2013 11:41:33
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    p_order_by='TRX_NUMBER'
    p_cust_trx_class='CM'
    p_trx_number_low='1'
    p_trx_number_high='1'
    p_project_number='2160610'
    p_report_fmt='Y'
    p_open_invoice='N'
    p_check_for_taxyn='N'
    p_choice='SEL'
    p_header_pages='1'
    p_debug_flag='N'
    p_message_level='10'
    p_pmt_advice='Y'
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.US7ASCII
    Spawned Process 5484
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 15 (X_QueryTree)
    Resource id in failed request: 0xa400001
    Serial number of failed request: 518
    Current serial number in output stream: 518
    Database version: 10.2.0.4

  • OPM Accounting Pre-Processor - Error while Submitting the Program

    In R12 Vision Instance, I am trying to submit the OPM Accounting Pre-Processor Program and it is giving the error as per below
    Open Period not found for Legal Entity PRU-Vision Process Industries (US), Cost Type STND, Stard Date 01-JAN-2010 00:00:00 and End Date 31-JAN-2010 23:59:59.
    I checked the GL Periods, the GL Period are open.
    I checked the Costing Calendar, I have created a Costing Calendar for 2011 and STND Cost Type and the Periods are also open.
    Is it something I am missing here ?
    Tried searching on MOS, couldn't find much.

    We were able to find it.If such error comes just check the data template and layout template.Try to run it in Template Builder and if its without any error then try it by submitting the conc pgm.
    Thanks.

  • Error in submitting concurrent request

    Hi All,
    I am getting error while submitting this concurrent request (To handle deliver, RTR, RTV transactions)
    Error : app-fnd-00874: Routine FDFBDF found no rows in table FND_DESCRIPTIVE_FLEXS. Please contact your system administrator or support
    representative
    what is this error and how can i slove this problem?
    Thanks
    V.Arun

    did you check note
    APP-FND-00874 FDFBDF Found No Rows In FND_DESCRIPTIVE_FLEXS
    Note:342918.1
    fadi

  • Errors while submitting the SQL * Plus  Report

    I am getting th efollowing Error while submitting the Concurrent request to run a report.
    FND_CANNOT FIND FILE
    concurrent manager encountered an error while running sql * plus for yours concurrent request
    Please respond ASAP

    Hi,
    Duplicate post see:
    Please advise on the Error immediately
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • Unable to use the Copy function while submitting the program for XML output

    Hi
    when i submit the concurrent program with XML output type, getting the output..
    when i submit he concurrent program using the copy button not able to get the output,
    my observation
    while submitting the program the xml template is not called....
    Diagnostics--> view xml -- able to view the ouput.
    do let me know if any of the steps is missing while registration in the xml responsibility..
    this is only with the custom conc program.. the standard program is working fine...
    do help me out..
    Regards
    Yram

    It's really a little difficult to answer your question without a bit more information. What version of JDeveloper are you using? What's your technology stack?
    If this is JDeveloper 11+g+, with the Fusion technology stack, you can use a technique like the one described here:
    http://groundside.com/blog/GrantRonald.php?title=jdeveloper_11_business_services_cascadin&more=1&c=1&tb=1&pb=1
    If it's JDeveloper 10.1.3, with the default Web technology stack, look here:
    http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html#62
    If, as it looks like, this is really a question about generic JSPs (no JSF), you might actually have a bit more success on a generic JSP forum--using scriptlets hasn't really been best practices within JDev since...well, since JSTL became available, really. That was a number of years ago.
    Like I said, there's really no direct way to use Javascript output in a scriptlet--unless you mean something like storing Javascript output in a hidden field, and using the value in a scriptlet on the next request. But by the time Javascript runs, any scriptlet from the current request will already have executed.

  • Error while running the program of deferred Tax ( New)Program Name RFUMSV50

    Hi
    I am getting the error while running the program of deferred Tax ( New)
    Following is the detailed error :
    Enter rate / INR rate type M for 00.00.0000 in the system settings
    Message no. SG105
    Diagnosis
    For the conversion of an amount into another currency, an entry is missing in the currency conversion table.
    Procedure
    Add the missing entry in the currency conversion table.
    Execute function
    You can then continue to process the commercial transaction.
    Thanks & Regards,
    PM

    Check the following notes:-
    1)  Note 46582 - 2.2->3.0: error SG105 for exchange rate M w. inv.
    2)  Note 165645 - SG105:Enter rate & / & rate type & for 00.00.0000..
    3)  Note 483542 - F110: SG105 in maintenance of proposal run with wthhldng tax
    4)  Note 975657 - SG 105: FI-Enjoy with foreign currency and calculate tax
    thanks
    G. Lakshmipathi

  • Error, while calling driver program for Smartforms

    Hi All,
    I am getting a error while running DRIVER PROGRAM of smart form.
    both driver program and smart form running successfully without any error while executing separately. But
    while calling Smart Form from driver program. it is giving error as :-
    *Events are already defined.*
    Description :- You tried to define events for a section, but a section with
    events is already active. You are not allowed to nest events.
    Regards,
    Pavan.M

    This is nothing to do with coding, this coz of error is from smartforms....
    Regards,
    Pavan.M

  • Error while Submiting Support message through Web browser

    Hi Gurus
    I am geting error while submiting Support message through Web browser i.e BSP . Please find the error message below
    "Error: The system could not create the message because of an RFC connection "NONE " error Service-specific Csutomizing missing for transaction ZLFN"
    Note: ZLFN is our Service Desk Message type.
    Any ideas where i am doing wrong?
    Points will be rewarded
    Thanks
    Bhaskar

    Hello,
    check if when you configured your new transaction type ZLFN you have included a corresponding entry in view CRMC_SERVICE_H.
    If the transaction type is missing in this view, you have this error.
    Regards,
    Raquel Cunha

  • Error while submitting order to the deployed cartridge

    Hi All,
    I am getting this error while submitting my test order to the deployed cartridge. Could you please let know the problem?
    Fri Jan 25 19:16:08 IST 2013 <25-Jan-2013 7:16:07,641 IST PM> <INFO> <cartridgemgmt.DeployCartridgeMDB> <[ACTIVE]
    ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <Rolling back the database changes ...>
    <25-Jan-2013 7:16:07,641 IST PM> <ERROR> <cartridgemgmt.DeployCartridgeMDB> <[ACTIVE] ExecuteThread: '3' for queue:
    'weblogic.kernel.Default (self-tuning)'> <Cartridge deployment failed:>
    org.xml.sax.SAXParseException: Error attempting to parse XML file (href='model/SN_OrchestrationProject.xml').
         at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
         at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
         at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:124)
         at com.mslv.oms.cartridgemgmt.PAR.i.a(Unknown Source)
         at com.mslv.oms.cartridgemgmt.PAR.i.d(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeRequest.getXmlModelAsDocument(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeMDB.f(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeMDB.a(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeMDB.onMessage(Unknown Source)
         at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:574)
         at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:477)
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:379)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4659)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:4345)
         at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3821)
         at weblogic.jms.client.JMSSession.access$000(JMSSession.java:115)
         at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5170)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Fri Jan 25 19:16:08 IST 2013 Deploy failed for cartridge SN_OrchestrationProject:
    <25-Jan-2013 7:16:07,641 IST PM> <INFO> <cartridgemgmt.DeployCartridgeMDB> <[ACTIVE] ExecuteThread: '3' for queue:
    'weblogic.kernel.Default (self-tuning)'> <Rolling back the database changes ...>
    <25-Jan-2013 7:16:07,641 IST PM> <ERROR> <cartridgemgmt.DeployCartridgeMDB> <[ACTIVE] ExecuteThread: '3' for queue:
    'weblogic.kernel.Default (self-tuning)'> <Cartridge deployment failed:>
    org.xml.sax.SAXParseException: Error attempting to parse XML file (href='model/SN_OrchestrationProject.xml').
         at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
         at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
         at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:124)
         at com.mslv.oms.cartridgemgmt.PAR.i.a(Unknown Source)
         at com.mslv.oms.cartridgemgmt.PAR.i.d(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeRequest.getXmlModelAsDocument(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeMDB.f(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeMDB.a(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeMDB.onMessage(Unknown Source)
         at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:574)
         at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:477)
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:379)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4659)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:4345)
         at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3821)
         at weblogic.jms.client.JMSSession.access$000(JMSSession.java:115)
         at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5170)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    Hi, this is weird, to me it looks like a problem when deploying a cartridge, are you sure this message is printed when submitting an order?
    If so, I would suggest you take a look inside your parfile which was deployed and see if there is anything obviously wrong with the file.
    In which case it would be a problem of the Design Studio build scripts.
    If that's the problem, you will need to report this, possibly as a workaround edit the par file and repack (which I agree is a pain in the neck).
    Viktor

  • InfoSet Query: Syntax Error while generating the program.

    Dear All,
    I have a Query in CRM system which contains an Infoset based on LDB.
    The InfoSet Query throws up a Syntax error while generating the program.
    So, we are not able to change the Infoset using the Infoset Query through SQ01.
    The error is as follows:-
    Syntax error in program "AQZZ==/SAPQUERY/CRM_ACTMON1 ".
    Error in the ABAP Application Program
    The current ABAP program "CL_QUERY_OUTPUT_DEFINITION====CP" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program "AQZZ==/SAPQUERY/CRM_ACTMON1 "
    in include "AQZZ==/SAPQUERY/CRM_ACTMON1 " in
    line 28:
    ""CRMT_REPORT_LOCATORLIST" must be a flat structure. You cannot use int"
    "ernal tables, strings, references, or structures as components. -"
    Please help me arrive at an solution, so that we are able to change the Infoset through the InfoSet Query.
    Awaiting your reply as soon as possible.
    Thanks and Regards,
    Pankaj.

    There is an error in your query, specifically in the definition of CRMT_REPORT_LOCATORLIST. In the short dump (transaction ST22) you will see more details and the exact location of an error if you just scroll down.
    I can't tell more because this problem is specific to your system, to which I have no access. Read the whole dump and look at all the objects mentioned there.

  • Routine AFPEIM encountered an error while starting concurrent manager STAND

    hi,
    Today i have done cloning and clone completed successfully. but CM is not comming up. I found the following errors in the concurrent log. Any hints on this.
    ==========================================
    Starting INVTMRPM Concurrent Manager : 28-FEB-2012 13:33:48
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVTMRPM with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INCTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:48
    Starting INVTMRPM Concurrent Manager : 28-FEB-2012 13:33:48
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVTMRPM with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INCTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:48
    Starting INVTMRPM Concurrent Manager : 28-FEB-2012 13:33:48
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVTMRPM with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INCTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:48
    Starting INVTMRPM Concurrent Manager : 28-FEB-2012 13:33:48
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVTMRPM with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INCTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:48
    Starting INVTMRPM Concurrent Manager : 28-FEB-2012 13:33:48
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVTMRPM with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INCTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:48
    Starting PODAMGR Concurrent Manager : 28-FEB-2012 13:33:48
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager PODAMGR with library /eqaappl/drqaebiz/appl/po/11.5.0/bin/POXCON.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator t : 28-FEB-2012 13:33:49
    Starting PODAMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager PODAMGR with library /eqaappl/drqaebiz/appl/po/11.5.0/bin/POXCON.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator t : 28-FEB-2012 13:33:49
    Starting PODAMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager PODAMGR with library /eqaappl/drqaebiz/appl/po/11.5.0/bin/POXCON.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator t : 28-FEB-2012 13:33:49
    Starting RCVOLTM Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager RCVOLTM with library /eqaappl/drqaebiz/appl/po/11.5.0/bin/RCVOLTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting RCVOLTM Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager RCVOLTM with library /eqaappl/drqaebiz/appl/po/11.5.0/bin/RCVOLTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting RCVOLTM Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager RCVOLTM with library /eqaappl/drqaebiz/appl/po/11.5.0/bin/RCVOLTM.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting INVMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVMGR with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INVLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting INVMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVMGR with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INVLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting INVMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVMGR with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INVLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting INVMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVMGR with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INVLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:49
    Starting INVMGR Concurrent Manager : 28-FEB-2012 13:33:49
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager INVMGR with library /eqaappl/drqaebiz/appl/inv/11.5.0/bin/INVLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:50
    Starting TDSMGR Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager TDSMGR with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:50
    Starting TDSMGR Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager TDSMGR with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:50
    Starting TDSMGR Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager TDSMGR with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator : 28-FEB-2012 13:33:50
    Starting XDP_MANAGER Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager XDP_MANAGER with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administr : 28-FEB-2012 13:33:50
    Starting XDP_MANAGER Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager XDP_MANAGER with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administr : 28-FEB-2012 13:33:50
    Starting XDP_MANAGER Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager XDP_MANAGER with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administr : 28-FEB-2012 13:33:50
    Starting XDP_MANAGER Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager XDP_MANAGER with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administr : 28-FEB-2012 13:33:50
    Starting XDP_MANAGER Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager XDP_MANAGER with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administr : 28-FEB-2012 13:33:50
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:50
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:50
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:51
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:51
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:52
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:52
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:53
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:53
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:53
    Starting STANDARD Concurrent Manager : 28-FEB-2012 13:33:53
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager STANDARD with library /eqaappl/drqaebiz/appl/fnd/11.5.0/bin/FNDLIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrato : 28-FEB-2012 13:33:53
    Starting PASMGR Concurrent Manager : 28-FEB-2012 13:33:53
    CONC-SM TNS FAIL
    Routine AFPEIM encountered an error while starting concurrent manager PASMGR with library /eqaappl/drqaebiz/appl/pa/11.5.0/bin/PALIBR.
    Check that your system has enough resources to start a concurrent manager process. Contact your system administrator to : 28-FEB-2012 13:33:53
    Process monitor session ended : 28-FEB-2012 13:33:53
    ==========================================
    i have done already steps mentioned in 1312632.1 but nor worked for me.
    also i ran below command and output is as follows.
    SQL> select CONCURRENT_QUEUE_NAME
    from FND_CONCURRENT_QUEUES
    where CONCURRENT_QUEUE_NAME like 'FNDSM%';
    2 3
    CONCURRENT_QUEUE_NAME
    FNDSM_DRQAEBS
    SQL>
    Version details are 11.5.10.2 and DB is 11g.
    Regards
    DBA.

    Hi;
    Please see:
    R12 instance Concurrent manager  and host status is showin as down
    Regard
    Helios

Maybe you are looking for