When submitting a conc. request from ebs

When i am trying to submit any conc. request be it a process of a report it completes successfully, but the completed show in yellow color and warning. In the log file it says :
Printing output file.
Request ID : 603033      
Number of copies : 1      
Printer : noprint
lp: unable to print file: client-error-not-found
APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 1
Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. Program exited with status 1.
Action: Review your concurrent request log file for more detailed information.
Finished executing request completion options.
Concurrent request completed
Current system time is 23-APR-2010 12:17:50
I tried setting the print option to zero when ever i submit a request then it completes without any warnings , but this is a cumbersome exercise can some one tell me where can i set this print copies = 0 permanently so that i do not have to do it again and again for every request that i submit in my responsibility.
Please help!

That's a system setting. Default value is set using system profile value Concurrent:Report Copies under responsibility Sys Admin. Setting it there sets it for ALL programs. Just set it for the responsibiliy you want.
Evita

Similar Messages

  • Ora-0000 when submitting a concurrent program from DB trigger

    Hello,
    I am getting following error when submitting a concurrent program from a trigger.
    ORA-20002: ORA-20026: 10322991ORA-0000: normal, successful completion
    ORA-06512: at "APPS.NPX_RUN_PICKR", line 63
    ORA-04088: error during execution of trigger 'APPS.NPX_RUN_PICKR'Though, this indicates normal successful completion, it does not generate any request_id. Nor, it launches the concurrent request.
    Below is the trigger code. Any idea why this is happening? Thanks, R
    CREATE OR REPLACE TRIGGER APPS.NPX_RUN_PICKR
    AFTER INSERT
    ON APPS.NPX_PICK_RELEASE
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    DECLARE
       p_printer        VARCHAR2 (240);
          p_print_flag     BOOLEAN;
          --concurrent_request variables
          l_request_id     NUMBER;
          --initializing variables
          l_app_id         NUMBER;
          l_resp_id        NUMBER;
          --pick_release variables
          v_out            VARCHAR2 (500);
          lorg number;
         errx varchar2(2000);
         p_message varchar2(2000); 
         result boolean;
       BEGIN
          p_printer := fnd_profile.VALUE ('PRINTER');
          p_print_flag :=
             fnd_request.set_print_options (p_printer,                  -- printer
                                            'LANDSCAPE',                  -- style
                                            0,                           -- copies
                                            TRUE,                   -- save output
                                            ''                   -- print together
                                           result:= FND_Request.Set_Mode(TRUE);
          l_request_id :=
             fnd_request.submit_request (application      => 'NPX',
                                         program          => 'NPXIBOXPICK',
                                         description      => NULL,
                                         start_time       => NULL,
                                         sub_request      => FALSE,
                                         argument1 => :New.order_number,
                                         argument2 => :New.org_id
          IF l_request_id = 0
          THEN                                   
             errx := sqlerrm;
             p_message :=:New.Order_Number ||errx;
                      raise_application_error
                       (-20026, p_message);
          end if;
    exception when others then
    errx := sqlerrm;
    raise_application_error(-20002,errx);
    end;

    Hello Hussein,
    It is 11.5.10.2.
    The line 63 represents following block
    IF l_request_id = 0
          THEN                                   
             errx := sqlerrm;
             p_message :=:New.Order_Number ||errx;
                      raise_application_error
                       (-20026, p_message);
          end if;Thanks,
    R

  • [svn] 949: Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name , it causes a ClassCastException in the server

    Revision: 949
    Author: [email protected]
    Date: 2008-03-27 07:12:59 -0700 (Thu, 27 Mar 2008)
    Log Message:
    Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name, it causes a ClassCastException in the server
    QA: Yes - try again with legacy-collection true and false.
    Doc: No
    Checkintests: Pass
    Details: Another try in fixing this bug. When legacy-collection is false, Actionscript Array on the client becomes Java Array on the server and my fix yesterday assumed this case. However, when legacy-collection is true, Actionscript Array becomes Java ArrayList on the server. So added code to handle this case.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-96
    Modified Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/proxy/RequestF ilter.java

    Hi all!
    Just to post the solution to this if anyone ever runs accross this thread...
    For some reason i had it bad the first time, don't have time right now to see why but here is what worked for me:
    HashMap primaryFile = new HashMap();
    primaryFile.put("fileContent", bFile);
    primaryFile.put("fileName", uploadedFile.getFilename());
    operationBinding.getParamsMap().put("primaryFile", primaryFile);
    HashMap customDocMetadata = new HashMap();
    HashMap [] properties = new HashMap[1];
    HashMap customMetadataPropertyRoom = new HashMap();
    customMetadataPropertyRoom.put("name", "xRoom");
    customMetadataPropertyRoom.put("value", "SOME ROOM");
    properties[0] = customMetadataPropertyRoom;
    customDocMetadata.put("property", properties);
    operationBinding.getParamsMap().put("CustomDocMetaData", customDocMetadata);
    Basically an unbounded wsdl type is an array of objects (HashMaps), makes sense, i thought i had it like this before, must have messed up somewhere...
    Good luck all!

  • [svn] 931: Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name , it causes a ClassCastException in the server

    Revision: 931
    Author: [email protected]
    Date: 2008-03-26 11:31:01 -0700 (Wed, 26 Mar 2008)
    Log Message:
    Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name, it causes a ClassCastException in the server
    QA: Yes - we need automated tests for this basic case.
    Doc: No
    Checkintests: Pass
    Details: RequestFilter was not handling multiple headers with the same name properly.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-96
    Modified Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/proxy/RequestF ilter.java

    Hi all!
    Just to post the solution to this if anyone ever runs accross this thread...
    For some reason i had it bad the first time, don't have time right now to see why but here is what worked for me:
    HashMap primaryFile = new HashMap();
    primaryFile.put("fileContent", bFile);
    primaryFile.put("fileName", uploadedFile.getFilename());
    operationBinding.getParamsMap().put("primaryFile", primaryFile);
    HashMap customDocMetadata = new HashMap();
    HashMap [] properties = new HashMap[1];
    HashMap customMetadataPropertyRoom = new HashMap();
    customMetadataPropertyRoom.put("name", "xRoom");
    customMetadataPropertyRoom.put("value", "SOME ROOM");
    properties[0] = customMetadataPropertyRoom;
    customDocMetadata.put("property", properties);
    operationBinding.getParamsMap().put("CustomDocMetaData", customDocMetadata);
    Basically an unbounded wsdl type is an array of objects (HashMaps), makes sense, i thought i had it like this before, must have messed up somewhere...
    Good luck all!

  • Error occuring when submitting Active Users request in R12 on Solaris 5.10

    Hi,
    For a cloned environment, while submitting the active Users request it is completing with error. Below is the log file. Please help
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    There was an error trying to initialize the HPI library.
    Please check your installation, HotSpot does not work correctly
    when installed in the JDK 1.2 Solaris Production Release, or
    with any JDK 1.1.x release.
    Error occurred during initialization of VM
    Signal chaining not allowed for VM interrupt signal, try -XX:+UseAltSigs.
    Program exited with status 1
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 720610.
    Review your concurrent request log and/or report output file for more detailed information.
    Thanks,
    Anand

    Hi Anand;
    Please check below metalink note:
    There Was An Error Trying To Initialize The Hpi Library When Running Any Concurrent Reports [ID 836237.1]
    Regard
    Helios

  • Invalid Number When Submitting XML Publisher Request Sets

    Hi All,
    I face this problem when I click on option of the second request on request set. I found this is a oracle bug on metalink. I post this question because I wanted to know if there are any workaround to solve this issue without applying the patch.
    Appreciate your help.
    Best Reagards,
    Edwin

    Hi Husein,
    Just FYI,
    I just found the bug is due to below query:
    select concurrent_program_name
    into :global.temp_prog_name
    from fnd_concurrent_programs
    where application_id = :set_requests.application_short_name
    and concurrent_program_id = :set_requests.concurrent_program_id;
    Some how the application_id is compared to application short name.
    Actually i can do the workaround using form personalization to apply the application_short_name with application id ....but it is not recommended and advised!!.
    Best Regards,
    Edwin

  • When creating a Change Request from within an Incident - Can Pull in the Information from the Inicdent?

    My users are currently creating a lot of Change Requests, and we have templates. What they want to do is to pull in the relevant information from the Incident like title, description, attachments, affected user, etc. I have seen similar things where people
    are changing an incident to a service request, and wondered if it were possible to do it from Incident to Change...
    http://gallery.technet.microsoft.com/Create-Incident-from-f19aaea0/view/Discussions

    iPhoto puts them in the book in chronological order.  So to get your photos from an album into an iPhoto book in the same order you will need to use the Photos ➙ Batch Change ➙ Date menu option and set them all to the same date with a 1 minute time difference between each. 
    OT

  • Submitting the Leave Request from ESS into SAP r/3 system

    Hi Gurus........
    Can anyone let me know the standard BAPI/BAPIs that are to be called inside SAP system to submit the leave request and trigger the underlying Workflow if any?
    Thanks In Advance.....
    Abhi.....

    Try transaction PTARQ
    Ideally don't use this in live PRD as you do not want to cause any inconsistencies with existing data/workflow etc
    Best wishes
    Stuart

  • My browser keeps closing unexpectedly. I only know about it when I get a request from AT&T asking if I want to stay connected. How do I fix this?

    Firefox is not exactly crashing. I can be online reading e-mail, surfing the net, or just reading information. Suddenly I may receive a notice from AT&T that my browser is closed and asking if I want to remain connected to the internet. This has been happening for the last several weeks. I called AT&T & they advised that it was not their problem, but my browser server...Firefox.
    I have been running a belated copy of AVG Free while waiting to get a new DVD part installed. (AT&T tech suggested that might be a contributing factor.) Today I installed a new 2011 version of AVG, but the browser is still closing although perhaps not as often.
    HELP! I am a total computer idiot. I just need someone to walk me through a solution.
    Thanks,
    K. Henson
    [email protected]

    I am syncing my iphone to my iTunes account and then I do a backup and also making sure all updates are current.  Then by going to the my phone and then going to the right and selecting the restore my iphone.
    Here is a picture of what I get

  • Issue when submitting XML report from back end.

    Hi All,
    I have a customized XXPrinted Purchase Order Report where I am submitting it from back end as below.
    l_var := fnd_request.add_layout (template_appl_name =>'XX Custom',
    template_code =>'XX_PRINTED_PO',
    template_language =>'English',
    template_territory =>null,
    output_format =>'PDF');
    l_request_id :=fnd_request.submit_request
    (application => 'XX',
    program => 'XX_PRINTED_PO',
    When I am executing this block in PO approval workflow with the customized function XXPO_COMMUNICATION_PVT.fax_po
    It is submitting the report but output is showing in xml data (not in pdf)
    Please let me know if I am missing anything.
    Thanks in advance.

    Please post the details of the application release, database version and OS.
    Can you post the concurrent request log file here?
    Can you find any errors in the OPP log file ($APPLCSF/$APPLLOG/FNDOPP*)?
    How to Use FND_REQUEST.ADD_LAYOUT When Submitting a Concurrent Request Via a PL/SQL Procedure [ID 308658.1]
    Thanks,
    Hussein

  • Numbers are not formatted when run report from EBS

    I am opening a new thread to solve my problem of formatting the number in xml report
    I dont understand i format the field number in rtf template and the number is displayed correctly when i preview it in pdf.
    The situation is like this :
    1. i have a field which calculate the sum for every page.
    i am using this code to calculte the sum for every page
    *<?if:(position()>=$start) and (position()<($start+$lpp))?>*
    *<?xdoxslt:set_variable($_XDOCTX,’var’,xdoxslt:get_variable($_XDOCTX,var’)+translate(CF_amount,',',''))?>*
    *<?end if?>*
    and i diplay this field in this way
    *<? format-number: xdoxslt:get_variable($_XDOCTX,’var'); '999G999D99' ?>*
    When i preview it from word this sum is displayed correctly : 444,444.34
    But when i run this report from ebs the sum amount is displayed like this 444,44434 wich means that the dot is nt displayed .
    Can anyone tell me what am doing wrong or how can i resolve this problem ?
    Thanks in advance
    REgards

    Hi,
    Check your previous thread , i responded there ;)
    Regards,
    Colectionaru

  • How to submit a concurrent request from Discoverer report.

    I would like to know If any one has tried submitting a concurrent request from Discoverer Report?_
    This is no stupid question, but our team here finally decided with a solution to our long pending issues with few of the discoverer report. To Proceed further, we would like to know, how to submit a concurrent request from Discoverer report?
    We are looking for calling a package from the Disco admin by passing the parameters from the disco to the 6i report.
    All help us in this regards are much appreciated.
    Kindly help us in the same!
    Thanks
    Arun

    Thanks Rod for confirming the same.
    I will be trying the same today and will let you know if I succeed in doing it.
    If I can share the actual requirement with you, it goes like this.
    "I will be triggering the Oracle 6i standard AP Trail balance report through the Disco report. The standard report will be inserting the required data to one of my custom table. Once the concurrent program completes normal, my custom table will be having the required data to create the workbook specific to the current run of the concurrent program.
    The one problem which I think could happen is, How can I make my disco report to wait till the standard program to complete in normal so that my disco report can be generated with the data from custom table.
    Will the above requirement is possible If I follow the way you mention in the PDF or Could you suggest a better way for achieving the same.
    In short, my requirement is: The custom table(say XX_TABLE) will be populated with data when the standard 6i report is run and the disco admin will be making of the custom table (XX_TABLE) to generate the report.
    Please advice.
    Thanks
    Arun

  • HR Full Load error in Payroll loading from EBS

    Hi,
    We have configured HR anylatics and when runs the Full load from EBS 11.10 (Vision Demo Database) we are receiving an error which says can not allocate 128 from temp tablespace. We have found the 11i database temp has been grown hugely (more than 10GB) and hard disk space been allocated fully.
    And we found this has been occurred by payroll package (selecting from a view).
    Is there any optimization or any solution for this issue.
    Thanks.
    Nilaksha.

    and remember to fix the bug in the database first:
    UPDATE per_all_people_f
    SET effective_start_date = '07-FEB-02'
    WHERE person_id = 6272
    AND effective_start_date = '04-JAN-91'
    AND effective_end_date > '06-FEB-02';
    because you will see 2 rows if you for:
    SELECT *
    FROM per_all_people_f
    WHERE person_id = 6272
    AND effective_start_date = '04-JAN-91';
    And this isn't possible, becuase HR is date tracked and you can't start twice on 1 date!

  • Updating the last date request from ODS to CUBE

    Dear Friends,
    Please can someone explain me.
    i allways update request from ods to cube, sometime there will be 3 to 4 request in the ods which wont have the Data mart (Tick) and when i update it to the cube. i can only see 1 request which is current date request. i dont know whether the previous days request has been updated to the cube.???
    but i see in the ODS that all the data mart (tick) is available for all the request.
    And  please can someone explain me, if i have many request in the ods, current date previous day and so on.
    Is there any way to update in such a way, where i can see all the dates in the Cube instead of only 1 request with current date in the cube.
    when i delete the request from the cube and remove the tick from the ods, and refresh, then suddenly the current request and all the previous request TICK will be gone...
    Thanks for your help.
    will assign complete points.
    Thank you so so much

    Hi,
    if you know everday how many request are getting updated in infocube as one request the you can check  the added records in infocube .. it should be equal to the sum of all those request ..
    but transferred can be more or equal .. also its depends on the
    update rules ..designing ..
    Hope this helps you ..
    Regards,
    shikha

  • Upload request from ODS to InfoCube

    Hi,
    When I upload a request from ODS to Cube, how can I know which request number was created in the cube for this request. In other words if I have a request number in the ODS, which the suitable request number for it, in the cube (or vice versa)?

    Hi,
    In ODS > right click > Manage > Requests tab if you see a green check mark in the DataMart Status column (3rd column) this means that the request has been uploaded to the further data target. If you click on this check mark, in the pop up screen scroll to the last column. This is the request number that you will find in the cube (Or further data target).
    Hope this helps...

Maybe you are looking for

  • The contents of Spaces disappears after long inactivity!

    OS X 10.7.2, 10 virtual spaces with assigned apps accessed as Ctrl1-Ctrl9. Everything's definitely fine as long as I keep switching between them. If spaces are not accessed fro a certain (? maybe 30 minutes, maybe 2 hours - unknown), their contents..

  • Graphic looks like chips when SCRIPT convert to PDF by  E-MAIL

    Hi, Experts, I have met a difficult problem in my program. As required, i draw a SCRIPT form , and convert it to PDF, then send by mail . There is a graphic in my form, and I create the graphic using program RSTXLDMC (first save the picture as a TIFF

  • How to upgrade from PI 7.1 SP8 to PI EhP1

    Hello We plan to upgrade from PI 7.1 SP8  to PI 7.1 EhP1,but  we do not know how to apply it. .. Please tell us the obtaining destination of the material of the installation guide etc. any other info that you can share.

  • How to set non-standard SFTP Port

    I'm using Contribute 3.0, and there doesn't seem to be a way to set the port number when using SFTP. Every other program that I've used to connect to our SFTP server lets me change the port from the standard 22 to the arbitrary number our IT guys hav

  • VAT for 2011

    Hi We have a raise in VAT for 2011. I have added the new VAT % with valid from date 1.1.2011 to SAP. If I now open a new sales order with delivery date for 2011, it should use the new, higher VAT, but it doesn't. What do I have to do to be able to is