Non PO invoice : Entry of document types

Hi,
I am working on SRM5.0 with EC scenario. Client needs to perform invoice / credit memo with document type.  We can’t select document type from drop down box at header level. How to replicate backend invoice document type (RE gross invoice, RN net invoice, etc) to SRM? Any report to execute for it?
Thanks in advance.
Rahul Mandale

Hi Yann,
Client need to create SRM invocie without PO but with different document type and should create corresponding accounting documents in backend.
In SRM SPRO, it is mentioned that "For invoice verification, you can only set RE as the document type for posting gross in the backend system.You can also set another document type using a user exit in the backend. This also has to be flagged as gross document type."
Which user exit will help here to get Idoc inbound parameter to create different document type RE, AE, AA etc. ?
Let me know if you had came across such requirement.
regards,
Rahul Mandale

Similar Messages

  • Gross Invoice amount for document type KR & RE

    Please help in understanding SAP Table & Field name that stores Gross invoice amount for document type KR (Non PO invoice) and RE(PO Invoice)

    Hi,
    Check Table RBKP & Field name RMWWR for Gross invoice amount & BLART for document type.
    Regards,
    Biju K

  • APP - F110 - Payment of multiple invoices with different document type

    Hi
    Vendor X has been assigned with payment method same with two document types. One document type got 4 invoices and other document type got 1 invoice.
    During payment run (F110) for each document type, the system picked up both the document type but listed them as two separate lines in the proposal list. When we process the payment the system also created two payment documents.
    Is there a way for these two document types to be processed as a single proposal and payment.
    Any suggestion how can we process these invoices together in a single proposal/payment document?
    Thanks & Regards,
    Sam

    Thanks

  • SD invoice posted with document type RV ,

    Hi all,
    I try to do incoming payment for SD invoice posted with document type - RV. when i used to do incoming payment by transc code: f-28. An ABAP dun error occurs, stating termination " message type-X".
    Is it possible to do incoming payment for SD invoice from FI. Urgent help needed.
    Regards
    Raj

    Hi,
    Once an Invoice is created in SD, An Accounting document is generated with document type RV. RV Doc. Type shows that the customer is liable to pay the amount.
    While you post the document through f-28, the document type shuld be changed to customer payment.
    It may be one of the reason. So select the docment type customr payment  but not RV and try
    Regards

  • Regarding invoice address for document type

    Hi friends,
    I want to know how to print the INVOICE ADDRESS for a perticular document type if user-id  is not exist.
    Please suggest me the suitable code for the above requirement.
    Regards
    Kumar

    Hi,
    Check Table RBKP & Field name RMWWR for Gross invoice amount & BLART for document type.
    Regards,
    Biju K

  • Invoice back-end document type?

    Hello,
    I need to create an invoice in SRM 5.0 . We are in classic scenario. I have created the invoice but "error in process".
    The customizing I have done is to link an internal number range for the BUS2205 Incoming Invoice transaction type INV Invoice. I do not have problems with VAT.
    My doubts are:
    Where I inform the ECC invoice document type in SRM? There is an attribute in PPOMA for that?
    Do I have to put an external number range for the ECC invoice? (Because I think that for invoice we can link only one number range however for the PO we can put one internal and other external)
    Could you please help me?
    Thank you vey much,
    Cheers,
    Marta

    Hi,
    Once an Invoice is created in SD, An Accounting document is generated with document type RV. RV Doc. Type shows that the customer is liable to pay the amount.
    While you post the document through f-28, the document type shuld be changed to customer payment.
    It may be one of the reason. So select the docment type customr payment  but not RV and try
    Regards

  • Document Type showing as Bill of Entry instead of Invoice in report

    Dear Gurus,
    in J2i9 report for Proforma register under rule 9 (5) of cenvat credit rules , 2004 ,
    we are generating a report using "inputs" as an option for Print Annexure for Material type ,
    in which for a domestic supplier , we are getting several document numbers for
    part II serial numbers , one entry is showing the type of document as "Bill of Entry" ,
    where it should have come as "invoice" , all other entries for the same supplier are showing
    correctly as "invoice". This has caused the finance dept to block payment to the supplier .
    this entry belongs to previous posting year. still remains unresolved. Please guide.
    Thanks in Advance.

    Dear Gurus ,
    Excise duty is not getting captured in this invoice due to document type wrongly coming as "Bill of Entry "
    which is for imports ( cenvate credit availed = 0). Please give direction as to why the wrong document type is getting selected
    only for a particular entry of a domestic supplier , and how to correct this entry. thanks in advance.

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

  • Validation for Document type in Vendor Invoice.

    Dear All,
    I need to restrict the user from posting vendor invoice other than document type KR. I thought of using validation with account type and posting key , but looking at more refined solution. Please suggest.
    Thanks & Regards

    Hi,
    Yes, this can be acheived using an validation at accounting document level.
    Validation must be like
    If posting key is 31---Prerequisite: BSEG-BSCHL = '31'
    then the doc type type should be KR---Check: BKPF-BLART = 'KR'
    Else put one error message.
    This will resolve your issue.
    Thanks,
    Srinu

  • Document types, number ranges in ECC 6.0

    How r u.
    I have a question in ECC 6.0. When we are defining document types and document number ranges what is “Define Document types for entry view in a ledger”, “define document types for general ledger view” and “Define Document Number Rangers for General Ledger View”
    Please explain clearly
    Thanku

    In New GL functionality introduced by SAP we have the concept of Leading Ledger (used by Classic GL or ledgers used before ECC) and Non Leading Ledger (multiple ledger concept).So the Document Type for these 2 Ledger types needs to be defined seperately
    For Classic GL or Ledger used before ECC use the : Define Document Type for Entry View (Classic GL means GL Functionality available in R/3)
    For Non Leading Ledger use: Define Document Type for Entry View in Ledger or Define Document Type for General Ledger View (Applicable only for New GL Functionality)
    Similarly the above classification is also applicable for Document Number Ranges.

  • Error M8-688 - Creation of several vendor line items is not possible for document type RN.

    Hello All,
    We are using the Net Invoice Posting with document type RN(Invoice- Net). We are generating different vendor line items in the accounting document based on the withholding tax codes involved in the invoice posting. When it comes to net invoice posting system is giving an error message M8-688 - Creation of vendor line items is not possible for document type RN. Is there is any way to create multiple vendor items with net invoice posting? Please suggest.
    Thanks,
    Chandu.

    I dont think that there is any way because it is a hardcoded error message.
          IF NOT t003-xnetb IS INITIAL.
            MESSAGE e688 WITH pi_rbkpv-blart.
          ENDIF.
    SAP is checking the customizing for net/gross posting per document type in table T003
    And if it is set up as net, then it is a hard error.

  • Document type for J1IV..?

    Hi all
    Can anybody explain me were to find the document type used for return delivery to vendor process.
    For taking print of return excise invoice , were the document type wehave to maintain..
    Thanks
    sap-mm

    Hi,
    Hope you are talking about the FI Document Types.
    For Vendor Return Material Document, it is WL - Goods issue/delivery
    And for Excise Invoice w.r.t. Return Document, it is MU - CENVAT Document but it depends upon the requirement.
    To check the same go to path SPRO > Logistics - General > Tax on Goods Movements > India > Basic Settings > Maintain Company Code Settings and check here under option "CENVAT Doc. Type"
    And in J1IS, Ref.doc.type is "MATD" for Vendor Return Material Document.

  • Invoice Reduction - Incorrect Document Number Transferred

    I am attempting Total-Based Invoice Reduction on an IDoc that is held up in Invoice Overview.
    As far as I can tell, the document types are correct and the number ranges are correct.
    The RD and RS ranges are pointing to internally assigned numbers beginning with 51 and the RE and (invoice reduction) ZI document types for MR1M are pointing to number range 51 which is external. 
    What can I be missing to get the following error?
    Incorrect doc.no.: $ 2. Select document number between 5100000000 and 5199999999
    Message no. F5151
    Diagnosis
    The document number you specified, "&v1", is not in the appropriate number range. The number range is dependent on the document type.

    It seems that the Invoice Reduction Document Type did not have the correct numbering assignment - it was external when it should be internal.
    In my mind I was thinking the invoice reduction document would be a transfer from MM, but it is not.  It is an internally created financial document so it need an internal document assignment.

  • Change Document type

    When we run Balance sheet adjustment(F.5D), Automatic clearing (F.13), G/R I/R clearing(F.19) system creates entry with document type "SA" .We want to change that document type , please confirm can we change that or not?
    Regards,
    Manisha

    Hi,
    Double Click on UMBUCHNG in the transaction code OBXH, there you can fill in the desired document types.
    Hope this helps, if yes, please assign points.
    Regards,
    Harish

  • Document type FO to have same layout as NB

    Hi all,
    I need to activate framework orders and I need to ensure that document type FO has the same layout as NB. Please would you tell me how/where to do this?
    Also- do framework orders have a different number range compared to standard PO's?
    Thanks in advance.
    JJ

    Dear,
    Why you need  screen layout for Frame work order document type same as standard PO?
    The documnet type is created and is assigned to a screen layout as per the requirement e.g material group is madatory for document type FO and optional entry for document Type NB.If you will assign NBF screenlayout (standard) to FO order type it will behave as standard .
    Document type controls scrren lay out,no range,allowed item categories  and freference requisitions.you can assign same no range to more than one document type,But it is advisable to maintain different no-range for each document type.

Maybe you are looking for

  • How do I export my library of Raw files to jpegs for use in a windows system?

    So we just returned from vacation in Belize and I have over 1300 raw images in an aperture library.  I need to export all of these images in jpeg format, onto a flash drive, so my wife can easily view them on her windows machine.  How can I do this?

  • Trying to run wuala with bin32-jre

    Hi, I am running archlinux 64 and want to run wuala (preferably through a browser), which requires a 32bit jre, which I already installed. Is there any way of making firefox64 use the 32bit plugins, whose locations were shown after bin32-jre installa

  • Oracle Intelligent Agent error

    I can't start dbsnmp from listener, the error message is: DBSNMP Discovery Error: couldn't read file "./oracle_olympia.tcl": no such file or directory and in "dbsnmpw.log", NMS-00315: Failed to create tcl package index. I can see the $ORACLE_HOME/net

  • [svn:bz-trunk] 13685: Bug: Some checkintests on Mac are failing.

    Revision: 13685 Revision: 13685 Author:   [email protected] Date:     2010-01-21 05:19:59 -0800 (Thu, 21 Jan 2010) Log Message: Bug: Some checkintests on Mac are failing. QA: Yes Doc: No Details: Changed the port of bad-http channel in ConfigurationB

  • Firefox will not allow page printing since today's update. Why? I can still print from Thunderbird and I.E.

    I think I received a Firefox up date today. Now when I try to print from any page on the browser I get a blank page. Thinking I was having a computer problem I reluctantly booted Internet Explorer. No problem printing. I went to Thunderbird and have