ROUTINE AFPTPR CANNOT TERMINATE CONCURRENT REQUEST ERROR IN CONCURRENT MANA

제품 : AOL
작성날짜 : 2003-05-13
ROUTINE AFPTPR CANNOT TERMINATE CONCURRENT REQUEST ERROR IN CONCURRENT MANAGER LOG
==================================================================================
PURPOSE
Concurrent Manager log에 있는 error를 해결한다.
Problem Description
Concurrent Manager 가 이유없이 죽거나 하여 log를 살펴보니 log에 계속해서
다음과 같은 error message가 반복적으로 print 되어있다.
Atempting to Routine AFPTPR cannot terminate concurrent request
ID 1443445 with controlling manager ID 86576 and manager's operating system process ID 1185.
Workaround
none
Solution Description
1. 현재 떠있는 the concurrent manager process를 모두 내린다.
2. Apps User로 database에 접속 후 다음 SQL 문을 실행한다.
SQL> update fnd_concurrent_requests
set status_code='X', phase_code='C'
where request_id=1443445;
SQL> commit;
Reference Documents
150865.1

제품 : AOL
작성날짜 : 2003-05-13
ROUTINE AFPTPR CANNOT TERMINATE CONCURRENT REQUEST ERROR IN CONCURRENT MANAGER LOG
==================================================================================
PURPOSE
Concurrent Manager log에 있는 error를 해결한다.
Problem Description
Concurrent Manager 가 이유없이 죽거나 하여 log를 살펴보니 log에 계속해서
다음과 같은 error message가 반복적으로 print 되어있다.
Atempting to Routine AFPTPR cannot terminate concurrent request
ID 1443445 with controlling manager ID 86576 and manager's operating system process ID 1185.
Workaround
none
Solution Description
1. 현재 떠있는 the concurrent manager process를 모두 내린다.
2. Apps User로 database에 접속 후 다음 SQL 문을 실행한다.
SQL> update fnd_concurrent_requests
set status_code='X', phase_code='C'
where request_id=1443445;
SQL> commit;
Reference Documents
150865.1

Similar Messages

  • Cannot process your request error message!!!

    I am trying to block a certain number from our phone lines, and it will not let me do it!!!! it says we cannot process your request at this time, try again later! whats going on?????

    Hello rc1985,
    I can assist you with blocking the number. There is a possibility that the Call and Message block feature is not added to the account which will result in receiving this error message. If this issue has not been resolved, please send me a private message with your mobile number and I will ensure that the feature is added to your account.
    Thank you, 

  • Concurrent Request Error..

    Hi,
    Concurrent Requests in EBS are erroring out.The request log file has the following errors,
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP--1870639101: Error during file I/O operation.
    REP-0124: Unable to write to the temporary file.
    scafa 3
    REP-0002: Unable to retrieve a string from the Report Builder message file.
    REP--1870639101:
    Regards,

    Hi,
    What is the application release? What is the OS?
    Is this a custom or standard concurrent program?
    Please make sure that the temp directory is writable and it has suffcient space.
    Search Metalink for "REP-0124", you should get couple of hits, go through the documents and see if it helps (See Note: 176472.1, 216472.1, 364966.1).
    Regards,
    Hussein

  • How to assign particular concurrent requests to sparate concurrent managers

    How to assign particular Users concurrent requests to custom or Sparate concurrent managers
    OS : Linux
    Apps: 11.5.10.2

    Hi,
    This can be done via "Specialization Rules".
    How to Create a Custom Concurrent Manager [ID 170524.1
    How to Split the Load of Work to Many Concurent Managers [ID 473310.1]
    Oracle Applications System Administrator's Guide - Configuration (zipped) -- Page 7-14
    http://download.oracle.com/docs/cd/B25516_18/current/acrobat/115sacg.zip
    Make sure you bounce the CM once you are done.
    Thanks,
    Hussein

  • Receive warning on Concurrent request

    Hi All,
    I am running the preliminary payment register while creating a payment batch but receive a warning message.
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. An error occurred while AOL tried to spawn the print process
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. An error occurred while AOL tried to spawn the print process.
    Please give me any suggestions to how to fix this.
    Thanks in advance,

    Hi,
    What is the application release?
    Do you get this warning with all concurrent requests or just with this specific one?
    Please go through the following documents and see if it helps in resolving the issue.
    Note: 1018291.102 - APP-00500 Or APP-FND-00500 Error When Printing A Report
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=1018291.102
    Note: 156570.1 - APP-FND-00500 When Running a Concurrent Request
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=156570.1
    Note: 371350.1 - Some Concurrent Requests Error Out With Fduprn App-Fnd-500
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=371350.1
    Regards,
    Hussein

  • Problem with concurrent request set api call

    Hi,
    Scenario...
    I have a concurrent request set that is called as follows from a plsql script....
    ** Note : I removed the cursor definition for simplicity.
    VARIABLE exit_status number
    DECLARE
    ln_request_id NUMBER := 0;
    ln_user_id apps.fnd_user.user_id%TYPE;
    ln_resp_id apps.fnd_responsibility.responsibility_id%TYPE;
    ln_app_id apps.fnd_responsibility.application_id%TYPE;
    ln_resource_id apps.jtf_rs_resources_vl.resource_id%TYPE;
    ex_errors EXCEPTION;
    lb_chk BOOLEAN;
    BEGIN
    :exit_status := 0;
    OPEN cur_appsinit;
    FETCH cur_appsinit
    INTO ln_user_id,
    -- ln_resource_id,
    ln_resp_id,
    ln_app_id;
    CLOSE cur_appsinit;
    fnd_global.apps_initialize(ln_user_id,
    ln_resp_id,
    ln_app_id);
    lb_chk := fnd_submit.set_request_set('BPSI', 'FNDRSSU1890');
    IF lb_chk = TRUE THEN
    ln_request_id := fnd_submit.submit_set(NULL, FALSE);
    IF ln_request_id = 0 THEN
    :exit_status := 1;
    fnd_file.put_line
    (fnd_file.LOG,
    TO_CHAR(SYSDATE, 'hh24:mi:ss')
    || ' : ERROR : There are Errors in the execution of the Request Set. Check the Logs of the respective Concurent Programs in the Request Set.');
    END IF;
    END IF;
    EXCEPTION
    WHEN ex_errors THEN
    :exit_status := 1;
    END;
    EXIT :exit_status
    This is script i am calling from another concurrent request.
    The concurrent request set is attached to a request group RG1 which is attached to the Resp1.
    The concurrent program which calls the above script is attached to request group RG2 and which is assigned to Resp2.
    ** Note - The apps initialize is also done to Resp1 (responsibility)
    I did all the above from system administrator responsibility.
    For execution of the above script... i changed my responsibility to Resp2 and tried to execute the concurrent program (which calls the script submitting the concurrent request set)....
    The concurrent program is completing with Completed Status....but the concurrent request set is being submitted. And the reason being the the fnd_submit.set_request_set is returning false and so not going ahead.
    To verfiy the above i checked the following query in toad....
    SELECT rs.application_id,
    rs.request_set_id,
    allow_constraints_flag,
    rs.print_together_flag,
    rs.owner,
    rs.printer,
    rs.print_style,
    cp.concurrent_program_name,
    rs.user_request_set_name
    FROM fnd_request_sets_vl rs,
    fnd_application a,
    fnd_concurrent_programs cp
    WHERE rs.application_id = a.application_id
    AND rs.request_set_name = 'FNDRSSUB1890'
    AND a.application_short_name = UPPER('BPSI')
    AND rs.start_date_active <= SYSDATE
    AND NVL(rs.end_date_active, SYSDATE) >= SYSDATE
    AND rs.concurrent_program_id = cp.concurrent_program_id(+)
    AND rs.application_id = cp.application_id(+)
    the above query is returning one row... it means the concurrent request set exists... but not able to execute it....
    Any help is highly appreciated....
    Kiran

    Hi,
    Scenario...
    I have a concurrent request set that is called as follows from a plsql script....
    ** Note : I removed the cursor definition for simplicity.
    VARIABLE exit_status number
    DECLARE
    ln_request_id NUMBER := 0;
    ln_user_id apps.fnd_user.user_id%TYPE;
    ln_resp_id apps.fnd_responsibility.responsibility_id%TYPE;
    ln_app_id apps.fnd_responsibility.application_id%TYPE;
    ln_resource_id apps.jtf_rs_resources_vl.resource_id%TYPE;
    ex_errors EXCEPTION;
    lb_chk BOOLEAN;
    BEGIN
    :exit_status := 0;
    OPEN cur_appsinit;
    FETCH cur_appsinit
    INTO ln_user_id,
    -- ln_resource_id,
    ln_resp_id,
    ln_app_id;
    CLOSE cur_appsinit;
    fnd_global.apps_initialize(ln_user_id,
    ln_resp_id,
    ln_app_id);
    lb_chk := fnd_submit.set_request_set('BPSI', 'FNDRSSU1890');
    IF lb_chk = TRUE THEN
    ln_request_id := fnd_submit.submit_set(NULL, FALSE);
    IF ln_request_id = 0 THEN
    :exit_status := 1;
    fnd_file.put_line
    (fnd_file.LOG,
    TO_CHAR(SYSDATE, 'hh24:mi:ss')
    || ' : ERROR : There are Errors in the execution of the Request Set. Check the Logs of the respective Concurent Programs in the Request Set.');
    END IF;
    END IF;
    EXCEPTION
    WHEN ex_errors THEN
    :exit_status := 1;
    END;
    EXIT :exit_status
    This is script i am calling from another concurrent request.
    The concurrent request set is attached to a request group RG1 which is attached to the Resp1.
    The concurrent program which calls the above script is attached to request group RG2 and which is assigned to Resp2.
    ** Note - The apps initialize is also done to Resp1 (responsibility)
    I did all the above from system administrator responsibility.
    For execution of the above script... i changed my responsibility to Resp2 and tried to execute the concurrent program (which calls the script submitting the concurrent request set)....
    The concurrent program is completing with Completed Status....but the concurrent request set is being submitted. And the reason being the the fnd_submit.set_request_set is returning false and so not going ahead.
    To verfiy the above i checked the following query in toad....
    SELECT rs.application_id,
    rs.request_set_id,
    allow_constraints_flag,
    rs.print_together_flag,
    rs.owner,
    rs.printer,
    rs.print_style,
    cp.concurrent_program_name,
    rs.user_request_set_name
    FROM fnd_request_sets_vl rs,
    fnd_application a,
    fnd_concurrent_programs cp
    WHERE rs.application_id = a.application_id
    AND rs.request_set_name = 'FNDRSSUB1890'
    AND a.application_short_name = UPPER('BPSI')
    AND rs.start_date_active <= SYSDATE
    AND NVL(rs.end_date_active, SYSDATE) >= SYSDATE
    AND rs.concurrent_program_id = cp.concurrent_program_id(+)
    AND rs.application_id = cp.application_id(+)
    the above query is returning one row... it means the concurrent request set exists... but not able to execute it....
    Any help is highly appreciated....
    Kiran

  • Concurrent request -one at a time

    I am going to run this request from PL/SQL,
    this is going to be called more than 1 time simultaniously, if more than 1 user runs the report at a time.
    I want to make it run one at a time, instead of running 2 different calls at same time.
    like i want to make the first request get completed and then run the next.
    How do i do it?
    FND_REQUEST.SUBMIT_REQUEST('BOM','BMCOIN','Import Bills and Routings',
                                                   NULL,FALSE,
                                              org_id,'1','1','1','1');

    Hi,
    Please see these threads.
    running cuncurrent request
    Re: running cuncurrent request
    Concurrent request compatibility Issue
    Concurrent request compatibility Issue
    Thanks,
    Hussein

  • How to determine the user who placed a certain concurrent request?

    Hi there,
    Is there a way (SQL query, for example) that can help me determine the user (EBS username) who placed a certain concurrent request?
    Thanks,
    Tareq

    Hi Tareq;
    Please check below notes which could be helpful for your issue:
    Concurrent Request-whcih is submmited by one of the Oracle USER *<<Posted By Hussein Sawwan*
    How to See Others Concurrent Request Oracle 11i
    Concurrent program- How to find database session *<<Posted By Hussein Sawwan*
    Re: Reg: Apps Concurrent
    Regard
    Helios

  • APEX integration with EBS 11i10: view concurrent request output

    Hi All:
    ENV: APEX 4.0
    EBS: 11i10
    DB: 10r2
    APEX is installed in the same database as EBS 11i10
    1. I have developed a APEX application that is can be launched from EBS as a form function. Also, the APEX will not ask any credential when user launch it from EBS, since user is already authenticated. Also, APEX will also display FND username, responsibility for user who has login - <<This is already implemented>>
    2. by Default, APEX will display a page, where user can browser and import a csv file into a predefined custom table <<This is already implemented>>
    3. After csv file is imported into cusotm table, user will click "Submit" button to process the data. APEX will submit a concurrent request (eventually, the concurrent program will call Oracle API to process data). A concurrent request is will display on the apex page. << This is WIP and I don't forsee any issue to implement this, since many have done this before>>
    4. User will write down the request id from step 3 and go to another apex page. In this page, user will enter request id and click "View Output", which should retrieve the concurrent output for that request id and display the output in a new browser. I don't want user go back to EBS to view the concurrent output. << This is my question for this thread>>
    My question for step 4: is there a seeded EBS API (FND_???) that I can call by passing a request id and API should display the concurrent request output in a browser automatically? Assuming, I will use fnd_global.apps_initialize() API in this page to set EBS env properly.
    My question may not be a direct APEX question; however, I hope someone can offer some help to me. I have done numerous research on this and still haven't find this API.
    Thanks!
    Kevin

    Hi Kevin,
    I am having an issue implementing the Call from an EBS menu entry to the APEX Page.
    I created the menu entry as a SSWA Function that use the apex_launch procedure to call the APEX page but when the user clicks on the option menu, the EBS login page appears.
    Can you share with me how can I fix this?
    Thanks
    AEstrada.

  • Need to retrive the name-value pair of concurrent request

    Hello All,
    I need to write a query that takes the concurrent request ID (executed concurrent request) as input and retrives the concurrent request parameter names and the values submitted to run that request.
    we have considered the following tables to acheive the result:
    fnd_descr_flex_col_usage_tl
    fnd_concurrent_requests
    fnd_concurrent_programs
    however unable to map the parameter name-value pairs properly.
    Thanks
    Krrish

    declangallagher .. I am sorry for not being very clear ...
    I am sorry for taking your time.But I appreciate your effort .and time ..
    I
    I have two servlets 1. result (existing) 2. preResult ( probable wrap around)
    The servlet
    1.result : takes in the Name and gets the result from the db ( Actually uses Castor and JDO ) to get the result
    and the GET is as follows
    http://128.173.99.68:8080/WebApplication/result?queryFor=Experiment&Name="john"
    where "queryFor" is for the name of the form and Name is the text in the VTL ( View)
    2.preResult is supposed to be a wrapper around the servlet "result" this takes in the ID from the user
    and is of the form
    http://128.173.99.68:8080/WebApplication/preResult?queryFor=Wrapper&ID="1234"
    There exists a DB mapping to ID and Name .
    So Instead of calling the result servlet ..I'll directly call the preResult servlet ...get the ID from the user ...
    and get the corresponding Name from the db
    ....here
    I wish to (If possible) tweak the "request" parameter
    change
    1.The queryFor value to Experiment
    2. add The Name="john"
    and send this to the result servlet so that it process it ...........

  • 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.

  • 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.

  • Rwrun.exe - Application Error while running Concurrent Requests in R12(Win)

    Hi Gurus,
    I am getting the Rwrun.exe Application error, whenever i am running a concurrent request. The thing, that i feel is: Probably, The concurrent requests that has the output file associated with them are the one that are running into error.
    The following is the description of the error popup:
    rwrun.exe - Application Error
    The instruction at "0x663ed168" referenced memory at "0x00000004". The memory could not be "read".
    Click OK to terminate the program.
    Click CANCEL to debug the program.
    Due to this, am not able to submit any of the Reports.
    Details of My installation:
    Apps Version: Release 12
    Platform: Windows XP SP2
    Installed on: External HDD of 250GB
    Addon Patches after install: None.
    Has anybody faced this problem earlier?
    Please help me out gurus..
    Thanks in advance.
    Regards,
    Ajit

    Check the Event Viewer to see if there is more information about the error that can help.

  • 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

  • Custom reports do not run with error message: Routine FDPREP cannot read ..

    Hi
    Can anybody help me with this issue pls?
    The dev system is cloned from production a few days ago. After running the post clone procedure, the dev is working fine except when we are trying to run custom reports, it errorred out with error message - Routine FDPREP cannot read the file /fmis/11.5.0/reports/US/POXPRPO1.rep. I have checked the env files, and they seem ok. $CUSTOM_TOP is set to the correct value. Other standard Oracle reports are running properly. The custom report file extension is in low case (.rdf). I've even tried to compile the report manually by using rwcon60.sh, the rep file was created under that folder but concurrent manager is still giving the same error message. So I am suspecting whther it is the path issue, as from the error message we can see up there, it is not showing the absolute path. Can anyone pls shed some lights on this for me?
    Thanks!
    Liang

    Hi hsawwan,
    Echo $FMIS_TOP(Custom Top) returns /global/app/fdev/home/fdevapp/findevappl/fmis/11.5.0, which is the correct path.
    Interesting thing is I checked the custom forms and they are working properly , our current configuration is form server and web server are sitting on one node, and CM, admin and database are sitting on the other node. So it seems it is the CM node settings caused the problem. However, I've just compared the APPSORA.env, customfindev_XXXXXX.env $FMIS_TOP (Custom Top) on the two nodes, and nothing seems out of ordinary.
    Thanks,
    Liang

Maybe you are looking for

  • Error executing Stored Procedure that returns a recordset in Visual Basic 6

    Hello, i tried to use the example in the link posted as a response to my question in a previous thread, and in Visual Basic 6, when i execute the Stored procedure it gives me the following error: This is the package created as indicated in the exampl

  • MQSeries and JAVA

    I'm trying to use the MqSeries classes with JAVA. I put the import com.ibm.mq.* statement in my program but I get an error that the package does not exist. What folder should the MQ Classes be in? I am using JDK1.3.0_02. Thanks

  • How can I add an appoggiatura using the score editor?

    I'm using Logic Pro X to write an ensemble piece and I need to add an appoggiatura, how do I do it?

  • Macbook Pro vs Macbook vs Ipad vs HP Mini 5102

    Okay, I am a highschool student who is going to be taking one or two college courses and I will be needing a new piece of hardware that would allow me to do alot of computing for my current situation and for future college uses. I would also like to

  • 0WBS_ELEMT changes between R/3 and BW

    Hello expert, I have a problem with 0WBS_ELEMT (WBS Element) when loading data with 0EC_PCA_3 datasource from table GLPCA. In the source system (GLPCA-PS_PSP_PNR) we have WBS elements like "FG3212.01/95". After loading in BW this WBS element is store