Enter Output Type Each Type while Printing Invoice

Dear All,
Have searched in the forum already for a proper answer but could not find one.
The issue is, while printing the invoice, the system is not automatically determining the output type even though all the output determination configurations have been made.
I have to manually enter the output type by entering into the billing document header data.
Kindly let me know if I have missed on any configuration during output determination.
Thanks and Regards
Adithya

I hope you did what mentioned you.
If you have doubt, whether the output type is getting determined properly or not.
Use Tcode VF02.
If Header Output Type -
select Goto option from Menubar - Then Header - Choose Output.
Accordingly, If the output type is Item related then
select Goto option from Menubar - Then Item - Choose Output.
Then Change: Output screen in your billing doc(VF02), in menubar select Goto - then choose Determin. Analysis.
In output determination procedure in Analysis Output screen, track your desire output type and its determination status.
Check routine for requirement against output type in:
1. Output determination procedure
2. In access sequence for the output type, check routine against access/condition table.
Finally, accordinly determine output condition record by using TCode VV31 for the desired output type.
Further, check routine for requirement like 62 is assigned against output type in:
1. Output determination procedure
2. In access sequence for the output type, check routine against access/condition table.
Also, have look on one my recently discussed SD thread:
- Re: Output to be blocked for Billing documents, if not released to Accounting
Regards
JP

Similar Messages

  • Error while printing invoice

    hi sapiens,
            the following error happens while printing my form from vf02.i have edited standard script rvinvoice01.i have not deleted any window.i have not even deleted text elemnts from the main window. what could be the problem .
    cancel error.
    Element ITEM_LINE window MAIN is not defined for zinvoice.
    thanks
    mani

    Hi
    The first thing: <b>the print doesn't depend on logon language <u>but customer language</u></b>.
    So u can logon with the language you prefer, that's no problem on logon langauge.
    Run trx SE71:
    - Insert the name of the sapscript
    - Insert the language of the version u need to correct
    - Go to the MAIN
    - Insert the text element is missing
    U have to do the above step for every version of your sapscript.
    Max
    Message was edited by:
            max bianchi

  • Strange issue while printing invoice *** delivery challan

    Dear experts,
    I have a strange prob while taking out the printout of invoice ***/delivery challan.
    We have two different locations (plants) A and B.
    In sapscript layout we have defined GRN no and truckno in bottom windows and
    type of invoice on upper part windows.
    We are able to see complete output on preview in DEV,QAS,PRD
    but on PRD when we take printout , part of output gets skipped on printing
    though visible otherwise on preview.
    What could be reason ?

    Aditya,
    Generally you face such problems in HP Printers.
    Are u using HP laser Jet Printer .
    Ok let me generalise the issue , you gotta ask ur basis guy to istall the latest driver for that printer
    this will most probably solve ur problem.
    Remember that once u get the print preview right , its either problem with the Basis or the printer.
    If its a Z layout then ask ur Basis guy to check the internal setting as to at what height he is giving the page skip.
    Regards,
    Ravi Kiran

  • Date format changed while printing invoice

    Dear All,
    Since yestardayin production server the date format of invoice is like 12.02.2010,but form morning it is comming like 2010.02.12.
    I have checked in quality and it is still comming like 12.02.2010.
    Could you please tell me why is it comming?
    Regards,
    Amar

    Dear Amar,
    1 Check the user profile for default type od date value in production system and compare it with quality. If this is not as per the quality system then change it.
    2 if both system quality and production both have same date format then  you have to debug and find out the issue.
    Hope you need not to go for second point.

  • Automatic archiving FI invoices while printing

    Hi guys !
    I need to build an "archiving system" for FI documents.
    The overall requirement is to archive all invoices in pdf format in external system (let's call it ES), and then link those documents to SAP FI module
    My initial concept was to save PDF documents on physical hard drive, new documents would be triggered by ES, processed and the link is somehow sent to SAP and then linked to particular invoice.
    Another approach would be to call WS on ES side, push document and receive a link in response.
    Which solution is better? Maybe there is another approach to achieve given requirements?
    What is more, is there any standard procedure to archive document, on physical drive or send, while printing invoice or it just require to create some custom enhancement in printing process?
    And the most mysterious subject to me, how to link SAP invoice with external source and let SAP to display external document? Hope it is achievable with Archivelink, do you have some good source of tutorials on ArchiveLink ?
    Unfortunately I have never occupied with Archiving module and I really need your piece of advice.
    Greets,
    Adam

    Your answer did help but still expriencing challanges with the following:
    Output Types
    -Print Parameters options are as follows
        >Plant/Storage location
        >Plant/Storage location/User group
        >User exit
       >User parameters
       >User
    Please advice which of the above is appropriate?
    -Should there be a program reflected on change output field for General data screen?
    Please advice since I'm currently experiencing shotdumps(runtime errors) when processing the GR.

  • Error in VF03 while printing "Output could not be issued"?

    Hi all,
    getting error while printing invoice VF03. Error is "Output could not be issued".
    Print privew is coming fine in both side either Smartform or VF03. If I try to print, then system giving the message is Output could not be issued.
    How to resolve this problem? Help me out.
    Thanks in advance.
    Sekhar

    Hi,
    Check out put is definded in line item of invoice.
    Also check wheter output type is definded or in t.code nact, Application is V3,  check which output type is definded for your case billing document type.
    Thanks.

  • Error while triggering program through output type while saving invoice

    Hi,
    I have a scenario where in my Z program needs to be triggered when saving a invoice.
    For that we have attached out Z program to output type which gets picked while saving invoice.
    In the Z program we have written the entire code in Form Entry subroutine.
    In the Z program we have called a FM "SD_SALESDOCUMENT_CREATE", to create a sales order.
    After sales order is created we have used a Commit statement.
    If I run the Z program individually, Salesorder gets created perfectly.
    How ever as per scenario when trying to save the invoice, output type gets picked. But program doesn't get called.
    and when I go to the saved the invoice I get the following error immediately:
    "Error document - Update was terminated"
    I have found that the problem is with COMMIT statement through transaction SM13.
    Can anybody help me with this. I cannot save the sales order without COMMIT, so I have to use it.
    Thanks in Advance,
    Rohan.

    Hi Rohan,
    I have worked on almost similar kind of requirement as you. 
    "Error document - Update was terminated" is because saving of invoice is done in u201CUpdate Tasku201D. Again in that work process, FM also calls for update task, which is not allowed and give short dump.
    Here are two different approaches to cope up in this scenario.
    1.Call FM in NEW TASK.
    Calling Function module in new task will assign new work process and will use different update task.
    Use:
    CALL FUNCTION 'SD_SALESDOCUMENT_CREATE' STARTING NEW TASK 'task'
    This will not give update termination error.
    Call of FM in this way will work, but as this will be asynchronies call you will be not able to get status/message out of the FM call result.
    If capturing return message is mandatory, use below approach
    2, Process output type via Job
    Set output type, dispatch time u201CSend with periodically scheduled jobu201D in u201CDefault valueu201D tab.
    Run batch job for program u201CRSNAST00u201D with appropriate variant.
    Please let me know if you need any further details.
    Best Regards,
    Nisarg

  • Outbound output type & Idoc type for MIRO (Invoice Posting)

    Hi Gurus,
    I have requirement like , I want to send the outbound IDoc to a external system containg the invoice detials after Saving in MIRO.
    I am not able to find any output type & Idoc type for the same.
    By going through varios threads , I found that there tell there is no Idoc type & output type for sending Idocs after MIRO.
    Kindlt let me know, if it so, or how this req can be fullfiled by other ways.
    Thanks
    Amresh

    Hi,
    Create Custom Idoc type with required fields,custom output type and assign it to partner profiles.(If there is no std idoc type or output type)
    Use Funtion module MASTER_IDOC_DISTRIBUTE to generate Idocs while saving MIRO, for this you need to find exit or implement implicit enhancement while saving MIRO.
    Regards,
    Ashok.

  • Default two ouput types while printing Purchase order

    Hi,
    In MN04 - Create Condition Records  I am not able to enter two output types  - print and email for the same vendor in Purchasing Output Determination: Doc.Type/Purch.Org/Vendor.
    I can default one output type and add the other one when doing the purchase order. But
    is there a way to default two purchase output types?
    Sincerely,
    Ketan

    Hi Jurgen
    I had deselected the 'Exclusive indicator' but still it does not work. The PO message screen shows up NEU but does not show NEU2. Though in the outout determination analysis for both the output types: NEU & NEU2, it shows output found.
    My configuration is as follows:
    Procedure RMBEF1:
    10     1     NEU
    20     1     MAHN
    30     0     NEU2
    Access Sequence (Exclusive Indicator not selected)
    5     27     Purchasing Output Determination: Purch. Org./Vendor for EDI
    11     25     Purchasing Output Determination: Doc.Type/Purch.Org/Vendor
    20     26     Purchasing Output Determination: Document Type
    Both NEU & NEU2 is assigned to Access 11: Doc.Type/Purch.Org/Vendor
    Hi Kiran,
    SAP would not allow me to enter the same output type 'NEU' twice in the the same access "Purchasing Output Determination: Doc.Type/Purch.Org/Vendor"
    Sincerely,
    Ketan

  • Has to type each character twice while supplying command in Open VISA test panel

    has a set of commands to work witha system connected to the MS windows PC. when I trype the commands in Hyperterminal (with/without ) they are yielding the expected results.
    in LabVIEW, to get the expected results I MUST has to type 'each character' in the command Twice(except blank space) in the Open VISA test panel (viWrite/viRead). If I give the command  is given the usual way(with each character typed only once), the result always is 'illegal command'.....the same works fine in the Hyperterminal.

    What confused Ashwin is that you said "In LabVIEW". OK, so you're using the MAX test panel. There's one thing that's not clear. You said "when I trype the commands in Hyperterminal (with/without )". With/without what? How is your Hyperterminal session configured? Have you tried something like PortMon to see what's actually being sent from the serial port driver?

  • ALV Grid -- Heading in each and every page while printing

    Hello!!!!
    How to display heading in ALV Grid in each and every page while printing?
    Thanks in Advance!!!!!!

    Hi nitesh,
    <b>data: lt_list_commentary type slis_t_listheader.
    perform build_comment using
    lt_list_commentary.
    form build_comment using
    pt_list_commentary type slis_t_listheader.
    data: ls_line type slis_listheader.
    clear ls_line.
    ls_line-typ = 'H'.
    ls_line-info = 'SREEKANTH REDDY'.
    append ls_line to pt_list_commentary.
    clear ls_line.
    ls_line-typ = 'H'.
    ls_line-info = 'HEADER1'.
    append ls_line to pt_list_commentary.
    clear ls_line.
    ls_line-typ = 'H'.
    ls_line-info = 'HEADER2TEXT'.
    append ls_line to pt_list_commentary.
    clear ls_line.
    endform.
    </b>In Function module REUSE_ALV_COMMENTARY_WRITE , give the parameter as
    <b>it_list_commentary = lt_list_commentary </b>
    Here ls_line-typ = 'H'. you can use options like 'H' , 'A' , 'S'.

  • Inbound Idoc type for posting Non-PO Invoice

    Hi,
    I am looking for an inbound Idoc type to post Non-PO Invoice.  The Idoc types INVOIC01 and INVOIC02 helps me to post the invoice with reference to PO.  But I am looking for the Idoc type to post the invoices without reference to PO i.e., For example to post the transaction FB60 (Enter vendor invoice without ref to purchase order).
    with regards,
    suresh

    Hello Deep,
    I know it might be quite late for you for this answer, nevertheless I will write that, because there are lots of question like yours. bapi_incominginvoice_park is also a suitable bapi for you. All you need to do is call it this way:
    data: headerdata like bapi_incinv_create_header value is initial,
            table_item type table of bapi_incinv_create_item,
            gl_account like bapi_incinv_create_gl_account,
            table_gl type table of bapi_incinv_create_gl_account.
    * fill headerdata and table_gl, leaving table_item empty
    CALL FUNCTION 'BAPI_INCOMINGINVOICE_PARK'
        EXPORTING
          HEADERDATA                = HEADERDATA
    *   ADDRESSDATA               =
        IMPORTING
          INVOICEDOCNUMBER          = lv_docnr
          FISCALYEAR                = lv_year
        TABLES
          ITEMDATA                  = table_item
    *      ACCOUNTINGDATA            = table_acc
          GLACCOUNTDATA             = table_gl
    *   MATERIALDATA              =
    *      TAXDATA                   = table_tax
    *   WITHTAXDATA               =
    *   VENDORITEMSPLITDATA       =
          RETURN                    = lt_return.
    This works perfectly for me, creating a mir7 document without refering to a PO. The trick here is to fulfill the glaccountingdata importing table while leaving itemdata empty.

  • Error saying "Enter the sender activity type also"

    While trying to upload the HR details from NON SAP to SAP through SE38, an error reflects asking to enter the sender activity type.
    Can any body help me.

    Hi,
    Please refer to the online documentation help whose link is listed below :
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/c3/c6c2a40f4f11d2956400a0c930669b/content.htm
    This link mentions four different data entry scenarios that can be configured for data entry profile in CATS.
    if you want to have the activity transfered to HR, you have to activate this Controlling object for pers. cost assignment in your
    customizing:
    - Personnel Time Management
      - Time Data Recording and Administration
        - Integrating Time Management with Other R/3 Applications
          - Recording Personnel Costs
            - Enter Controlling objs permitted for pers. cost assignment
    here you can find in the documentation:
    'In this step, you specify which Cost Allocation or Funds Management  objects the personnel costs can be assigned to.
      and, in addition, for account assignment to activity type:
      COBL-LSTAR Activity type
       In cac1 'cost accounting variant' is set to 'Assignment of personnel costs to master cost center'. In this case, the cost center is not transferred to HR. Activity allocation is done directly from cats through the other (non-hr) components. Check for 'activity allocation' in the online documentation.
    the cost assignment variant 'B' (Assignment of personal costs to sender) needs a receiving accounting object.
    If there is no receiving object the cost assignment variant changes to '0'.
    regards
    Waman

  • Error - Enter rate/USD rate type

    Hi
    We are with SRM 7.0
    Getting below error while going for shop. any  inputs please ?
    " Enter rate / USD rate type M for 23.11.2011 in the system settings "
    Thanks
    Nag

    Hello,
    System tries to convert a currency amount in USD, but you do not have exchange rate type 'M' (which is used by default in function modules CONVERT_TO_XXX_CURRENCY ) for USD in SRM table TCURV (exchange rate types for currency translation).
    This table can be maintained using SPRO:
    SAP implementation guide > SAP Web Application Server > General Settings > CUrrencies > Check Exchange Rate Types
    Nevertheless, before maintaining this table directly in SRM, check if this entry exists in same table, but in your R/3 backend. If yes, do a new data replication for customing object DNL_CUST_BASIS3 using middleware.
    If also your backend table TCURV is not filled-in with this entry, you should have same problem in R/3: ask to consultant to make necessary in R/3, then do a replication by middleware.
    Regards.
    Laurent.

  • Please enter required information - Order Type

    Hi,
    In istore while clicking on the 'Place order' button i get the following error.
    Error messages from Order Management
    Please enter required information - Order Type
    There is an error in order submission.
    1.I haven't set the ASO Default Order Type at application(istore) and responsibility level(ibe_customer).
    2.ASO: OM Defaulting is set to Yes at site,istore and IBE_CUSTOMER responsibilities. But in Default Sourcing Rules,there is no record for default order type.
    If i set the profile option or create a record in with a default order type, I won't be able to change the order type in order management(because of the procesing constraints), once it is placed in istore.
    The requirement is to default the transaction type(order type) based on the ship to address selected.How can i achieve this?
    Thanks,
    Nithya

    Hi,
    Run concurrent program Import orders and completed normal, but i got error and able to see in corrections .. 'Please enter required information - Line Type'Review the following documents and see if it helps.
    Note: 371877.1 - Order Import Failing With 'Please enter required information - Line Type.'
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=371877.1
    Note: 788860.1 - Retrobilling Order Creation Process Errors Out 'Please enter required information - Line type'
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=788860.1
    when i tried to enter Line Type .. Goods in the tab page and validate... it is not accepting errored out.What is the error?
    Regards,
    Hussein

Maybe you are looking for

  • ADF Buttons not appearing correctly

    I've tried researching this problem and from what I've found it has said if we are using JDK version 1.4 and headless = true then we shouldn't have this problem. When running our application some of our ADF buttons will appear correctly and others wi

  • How to check which PSA is having more data

    Hi, I want to delete the PSA, and check which PSA is having huge space is occupied, from table RSTSODS we can check the availble psa`s how can we check PSA database. we have to configure in db02 ? Regards, Vamsi

  • Disappearing Colors show up only in the shadows of other windows

    Ok - this is weird: I noticed that some colors in web designs I was working on were not displaying. Like a light grey nav bar shows up white. This is also true in certain applications - the light blue row color in Yojimbo and my font manager are not

  • Hp office jet pro 8600 air printing scale issues.

    Can you help me figure out how I can fit my document (to scale correctly). I've tried printing it direct print using iOS air print and through the hp app. Thank you for your time!

  • SMTP COnfiguration

    Hi, We are doing SMTP configuration in our production system , i have a very basic question on this regards. Does the SAP System must be have direct internet connection in order to send mails to internet address or we can connect the internet via SAP