Error in configuring the output type

Hi,
In sap script the requirement was to give option to select user whether they need to save the form in pdf or print/preview.
For this I have given a pop-up using popup_to_confirm before the OPEN_FORM function module in the driver program. and
depending on the option populate the OPTIONS parameter in the OPEN_FORM function module.
Now when I configuring the output type by going to the order screen and try to save it, the configuration is not saved and a update termination occurs due to the screen called in the popup_to_confirm function module.
How to avoid this problem?
Regards,
Tan

Hi Sucharita,
Steps to Maintain an output device in your user master record
1. From the menu,choose System --> User profiles --> Own Data
2. Select Default Tab of user profile and enter the output device in 'output device' field .
This should solve your problem.

Similar Messages

  • Error in processing the Output Type ZEML

    Hello,
       For the Purchase order , i have configured the output type  ZEML in nace with medium as 'Simple Mail'. But when i process the message for ZEML in ME29n , it gives a n error saying '   Please maintain an output device in your user master data '.
    can u suggest how can i resolve this.
    Thanks,
    sucharita

    Hi Sucharita,
    Steps to Maintain an output device in your user master record
    1. From the menu,choose System --> User profiles --> Own Data
    2. Select Default Tab of user profile and enter the output device in 'output device' field .
    This should solve your problem.

  • PR05: How to configure the expense types depending on the type of expense?

    Hi,
           We are in the process of upgrade from 4.6C to ECC 6.0. The problem is that when we are creating the expense request, after selecting the type of expense (travel expense or non travel expense) we are getting the same expense types for both the travel and non travel expenses.
    Now my question is that, is there any in error in configuring the expense types in transaction FITVFELD.
    How to configure the expense types depending on the type of expense (travel and non travel)?
    Your answer will be highly appreciated.
    Thanks in advance.
    Ramana

    Hi
    I checked with one of the SUBJECT MATTER EXPERT on T&E and it is not possible to have the expense types based on the schema.
    Thanks
    Ashok
    Award points if this is useful

  • Update LIKP table while saving the output type in VT02N transaction

    Hi All,
    I have a requirement where i have to update Delivery Priority(LPRIO) field in LIKP table while saving the output type in VT02N transaction. I am not able to use the BAPI "BAPI_OUTB_DELIVERY_CHANGE" or FM "WS_DELIVERY_UPDATE" because, when we save the output type the programs that are configured in NACE are triggered in update mode and hence i will get a roll back error.
    Let me know other ways of updating the table at the time of saving output type for shipment transaction VT02N.

    This could be a result of one of the following reasons:
    1: Incorrect smart form/routine assigned in the output configuration (NACE)
    2: Serial number range of the delivery expired
    3: The default settings of the user (SU01) processing the delivery is missing the default printer name.
    Hope this is helpful
    Manish

  • Error Message in calling output type

    Has anyone encountered an error " Processing routine ENTRY_TEST in program ZTEST does not exist" when calling an output type? The output type has already been configured and in the print program ZTEST, subroutine ENTRY_TEST is there.

    hi,
    Go to TCODE /nNACE
    if ur output type is related to order then choose V1 , billing V3
    choose  output types button in the application tool bar
    then choose the output type which u r using...
    in the left side u can see processing routines...
    double click that
    there u can give the program name which u want to call..
    Program           ZLS_TEST                                        
    FORM routine      ENTRY                                                                               
    then go to SE38
    ur logic should be within the form ENTRY...
    REPORT zls_proforma_invoice.
    INCLUDE rvadtabl.
    DATA: retcode   TYPE sy-subrc.         "Returncode
    FORM entry USING return_code type any us_screen type any."#EC CALLED
      CLEAR retcode.
        data: v_update(1) type c.
    clear v_update.
    ENDFORM
    Edited by: Sumi Vasu on May 14, 2008 8:49 AM

  • How to display error message in Billing Output Type (VF03).

    Hi,
    could anyone suggest how do i display error message via billing (VF03) output type?

    i want to display an error message from my sapscript program.
    *determine discount
    it_zmas-discount = it_zmas-gross_value - zkwert.
    MODIFY it_zmas.
    ELSE.
    MESSAGE ID 'Z0' TYPE 'S' NUMBER '999' WITH 'Please maintain cust pricing grp 34 for ' wa_zmas-matnr.
    p_proc_screen = 'X'.
    ENDIF.
    when user enter billing doc no in vf03, user will click 'issue output type' and select their output type to be printed out.
    if there's an error in the print program, it should promt out an error message and do not allowed user to print preview and print the form out.
    what i had did previously, i prompt the error message and disable the print preview button. i think its not a good solution and i am not sure how to stop the form from not printing it out.
    i was wondering is there any user exit of the output type, vofm (which i had this solutions from my previous question, but unsure how to use it) or any other solutions.
    please help.

  • Error log table and output type

    Hi All,
    While creating an invoice(while saving billing document) is it poosible to capture the error in a log in table?
    And how is this error log table related to the output type?
    Thanks

    You seem to be confusing saving of the billing document with creation of the output. These are two independent updates (LUWs). A document may be saved without any output.
    If there are any errors in the billing document creation, the document just won't be created. Such errors should be captured in the log of the Blling Due list, if it's been run properly.
    To update the processing log for the output, use FM NAST_PROTOCOL_UPDATE.

  • Maintaining the Output type in the PO from Sales Order

    Hi experts,
    I have developed one application for Sales Order that..there is one link of Purchase order in the Sales order.if i click on PO in the sales order.it goes to me22n screen.if i will maintain the output type in the PO and Click on SAVE button.it gives some error like (No update of sales order 100001 from purchase
                                     order (error V1 275)).
    cud u help me to solve the above issue.its very urgent.
    is there any way to change to va02 to va03...when i am going  from va02 to me22n
    thanx in advance
    regards,
    hpp

    May be because when saving the PO, it's trying to update some sales order related data too and it's locked by you. Try using the save button in output type maintenance screen, or open the sales order in display mode and call ME22N and try maintaining the output type.
    or try using LEAVE TO TRANSACTION ME22N from VA02.
    Regards
    Sridhar
    Message was edited by:
            Sridhar K

  • How to add an error message to an Output Type.

    Hello SAPients,
    Using a User Exit I'm modifying the segments of an outbound IDoc. When certain conditions apply I trigger an exception 
    RAISE DATA_NOT_RELEVANT_FOR_SENDING.
    It's ok because the IDoc is not generated and the Output Type is set to "Incorrectly Processed" status.
    But, when the user clicks the "Processing Log" button there is no informatio of the error occurred. How can I add an error message to the Processing Log of the Output Type?
    Thanks in advance for your kind help.

    Hi,
    Try this statement..
          MESSAGE ID      sy-msgid << Your msg class
                  TYPE    sy-msgty << Your message type
                  NUMBER  sy-msgno << Your msg no.
                  WITH    sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4 << Other info
                  RAISING data_not_relevant_for_sending.
    Regards,
    Joy.

  • Print program for the smartform for selecting the output type (email/fax)

    Hi All,
    Requirement :I have to create a print program for the smartform where the output type may be print out,email or fax ,so i need to put the condition for selecting the output type (like printout,email,fax).
    can any body please let me know how  to put the condition for selecting the desired  output type ?
    Thanks in advance
    Rahul

    Hi
    It is not the output type that has to be changed
    it is the MEDIUM which you have to change and configure
    for printout medium is 1
    for FAX medium is 2
    for MAIL it is 7.
    so instead of printout change the medium to 2 or 7 for the same output type and attach to the same driver program and smartform/form.
    Reward points for useful Answers
    Regards
    Anji

  • Trigger Idoc by using the Output type in Z function module

    My requirement is when I run Z function module then  Idoc should be send which is configured in Output Type.
    Means when ever i run the Functional module that Output type should be triggered.?
    Does any one have solution??

    Hi,
    Remove the Material Class from Importing Tab and Place the same under Tables Parameter.
    Regards,
    SRinivas

  • How to configure script output type in vt01 (where) ?

    I have output type zmi0...
    I have configured in /nnace..
    In /nvt01, where to configure my outpout type ..printer  and all
    Please help me.

    Ur query is not clear.
    After creating output type u have to assign it in the NACE tcode.
    After that for a particular vt02 go and enter the sipment no and that u have option for enetring the output type.
    Regards

  • Changing print sequence of the output types

    Hi Friends,
    We are using Z program for issuing output .
    In this we are giving input values as Application (ex. V3) and output type (Ex Zx50) to take invoice printouts
    At present we are having three output types ZX43 , ZX44 AND ZX45.
    For this three output types program name and form name is different .
    To take invoice print we are executing this Z program with output types separtely.
    Our requirement is
    Creating new application ( ex V4 ) AND new outype type (ex ZX46) under this we have to bring this three output types ZX43 , ZX44 AND ZX45.
    By giving input as V4 and ZX46 it has to do the same work as it is done separtely
    while doing code please give me the suggestion or logic how to combine all these three output types in one
    Regards
    R.vijayakumar

    Hi,
    You can do this in the NACE configuration itself. we can call 5 program and forms for a particular output type.
    In the output type processing routine of nace transaction mention the program and form name
    Thanks
    Arul

  • Changing the print sequence of the output types

    Hi Friends,
    We are using Z program for issuing output .
    In this we are giving input values as Application (ex. V3) and output type (Ex Zx50) to take invoice printouts
    At present we are having three output types ZX43 , ZX44 AND ZX45.
    For this three output types program name and form name is different .
    To take invoice print we are executing this Z program with output types separtely.
    Our requirement is
    Creating new application ( ex V4 ) AND new outype type (ex ZX46) under this we have to bring this three output types ZX43 , ZX44 AND ZX45.
    By giving input as V4 and ZX46 it has to do the same work as it is done separtely
    while doing code  please give me the suggestion or logic how to combine all these three output types in one
    Regards
    R.vijayakumar

    Hi,
    You can do this in the NACE configuration itself. we can call 5 program and forms for a particular output type.
    In the output type processing routine of nace transaction mention the program and form name
    Thanks
    Arul

  • Error while determining the currency types for PO

    Hi,
    When running MR11 on PO4534356339 (account maintenance) the following error msg appears:
    Error while determining the currency types for 4534356339 00030.
    Message no.C+171
    Check the configuration.
    I have checked all currency settings and found ok. Material ledger is activated for this plant. It looks like there is problem in Item 30 of the Purchase order is having problem.
    Best Regards,
    MR

    Hi,
    Please refer this link :
    MR11 error - Error while determining currency type - C+, 171!!!
    Regards,
    Pramitha.

Maybe you are looking for