Vendor return for multiple material doc

hi experts
we have created a po of multiple line items... vendor has delivered each line item with different excise invoice..
each time we receive the material with respect to po, material document is created which is different for all line items.
if we want to return by selecting return delivery in MIGO, it will allow only one material document. but i want to return partial quantity of material of all line item, which can be done by selecting 122 mov type. But while posting the ETT type is GRPO instead of OTHR, so the excise is captured, instead of reversing excise duty. Part 1 entry is also added instead of deducting.
hope my querry is clear
awaiting ur valuable replies

hi sandeep
  thanks for ur reply..
1)  The configuration settings is been already maintained.
2)  I agree when we select return delivery from drop down list in MIGO, then it is picking ETT OTHR, but it will allow only one material document. ( Please check in MIGO)
     I am making return delivery against multiple material document which is been generated at the time of MIGO.(101) for the same PO.
        Here i have to go to migo transaction, in drop down list it will be Goods receipt and i should manually select 122 mov type.
here after posting the document it is hitting ETT GRPO instead of OTHR. (please test it)
hope i am clear.

Similar Messages

  • Vendor information for some material's is missing in the report ?

    Hi,
    One of my user has raised a request that the vendor information for some material is not displayed in report where as its available in ECC, now i have checked in BI that information for 20 material numbers is missing even in BI that is the reason not showing in the report. Now what do I do ? Can you please suggest.

    Kindly update the master data table for material and vendor.....

  • Vendor Return for Capital Goods

    Hi Gurus,
    Morning all of you, In vendor return for Capital goods,
    i have created Excise Invoice using J1IS T-code,
    When i'm trying to Post it using J1IV, Surprisingly I am finding that RG23A fields are getting populated instead of RG23C.whereas my requirement is that instead of RG23A , RG23C should get populate, so that i can complete mt transaction.
    plz suggest if any configuration has to be done for that, i have checked all configuration, i am finding correct from best of my knowledge.
    Full points will be awarded.
    Thanks & Regards
    Manoj K singh

    Thanks SAP Guru,
    This problem is solve using ABAP coding,
    anyway i am very much thankfull to all of your's valuable input.
    thank you.
    manoj

  • Vendor Return for VMI for multiple materials

    We have a scenario where we need to do return to Vendor for many items (1000 plus). Is there a way to do this easily other than using MBRL which is a very difficult and complicated process, considering the number of transactions we need to do. My understanding is that SAP does not support Vendor Return PO process for the VMI materials. Can anyone help?

    The return delivery can entered from MBRL or MIGO...
    If you have 1000+ line item and all line item has a different quantity and different material document number, Then you can run LSMW for MBRL..

  • Vendor Return for after INvoicing

    Hi Dear,
    We have one scenarion
    suppose we already did GR for 100 Q and also made quality inpection for all quantities now we have to return  20 quantites ,but we are unable to return delivery giving message IR already happened , if first we trying to make credit memo got return GR 20 quantities in MIRO then system giving meassge material in unrestriected , quality has already passed,please suggest me some way how we can map this scenario..
    Thanks,
    Dharmveer

    There is no direct connections with your movement type 161 and your ETT OTHR, when you will use J1IS for createing outgoing excise invoice wrt to the material doc it will determine the GL acc with the aid of OTHR ETT this is standard settings.
    Now if you want to hit the or update the RG23A/ RG23C in the process then maintain the movement type 161 and the register type in the below mentioned path.
    IMG->LOG general->Tax on goods movement-> India-> Business transaction->Specify Which Movement Types Involve Excise Invoices.
    Inside you will find the dropdown to select the register you want to update.

  • BDC For VA01(For MULTIPLE  Material ie Multiple Line Items)

    i have to do A BDC using call trasncation which has Multiple material in line items,so please could you send me some sample code

    Hii pls refer the following code.. it is BDC for me31k.. hop this will help....
    *&    Report name   : ZOA_P1                                 *&
    *&    Program title : Outline agreement Creation program     *&
    *&    Description   : BDC program which creates outline      *&
    *&                    agreement                              *&
    *&    Author        : Sheeba B                               *&
    *&    Author ID     : 5855                                   *&
    REPORT zoa_p1
           NO STANDARD PAGE HEADING LINE-SIZE 100.
    include program***************************
    INCLUDE zbdcrecx4.
    *C-structure for table ekko fields
    TYPES:BEGIN OF tp_temp,
           lifnr TYPE lifnr,
           ekorg TYPE ekorg,
           ekgrp TYPE ekgrp,
           bukrs TYPE bukrs,
          END OF tp_temp.
    ****************Declarations********************
    *C-variables for table ekko field
    DATA: BEGIN OF tp_final OCCURS 0,
           lifnr TYPE lifnr,
           ekorg TYPE ekorg,
           ekgrp TYPE ekgrp,
           bukrs TYPE bukrs,
           ematn TYPE ematn,
           ktmng TYPE ktmng,
           netpr TYPE netpr,
           werks TYPE werks,
          END OF tp_final,
    *C-variables used in the program
         wa_temp TYPE tp_temp,
    *C-variable for entering multiple item level details
    *C-for same vendor
         w_count(2) TYPE c VALUE '01',
         w_count(2) type N value 01,
         w_str(40) TYPE c,
         w_str1 TYPE string.
    *C-selection screen parameter for file name
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 5(20) text-000 FOR FIELD f_name.
    SELECTION-SCREEN POSITION 25.
    PARAMETERS: f_name LIKE rlgrap-filename.
    SELECTION-SCREEN END OF LINE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR f_name.
      CALL FUNCTION 'DSVAS_DOC_WS_FILENAME_GET_50'
       EXPORTING
         def_filename           = 'F_NAME'
         def_path               = 'C:\'
         mask                   = '.TXT'
      MODE                    = ' '
      TITLE                   = ' '
       IMPORTING
         filename               = f_name
    EXCEPTIONS
      INV_WINSYS              = 1
      NO_BATCH                = 2
      SELECTION_CANCEL        = 3
      SELECTION_ERROR         = 4
      OTHERS                  = 5
    *IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ENDIF.
    ***Start of selection*********
    START-OF-SELECTION.
    *C-function for uploading file from workstation
      w_str1 = f_name.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                      = w_str1
      FILETYPE                      = 'ASC'
          has_field_separator           = 'X'
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
        TABLES
          data_tab                    = tp_final
      EXCEPTIONS
        file_open_error              = 1
        file_read_error              = 2
        no_batch                     = 3
        gui_refuse_filetransfer      = 4
        invalid_type                 = 5
        no_authority                 = 6
        unknown_error                = 7
        bad_data_format              = 8
        header_not_allowed           = 9
        separator_not_allowed        = 10
        header_too_long              = 11
        unknown_dp_error             = 12
        access_denied                = 13
        dp_out_of_memory             = 14
        disk_full                    = 15
        dp_timeout                   = 16
        OTHERS                       = 17
    *IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ENDIF.
    PERFORM open_group.
    *C-looping at internal table for passing
    *C-field values to transaction
      LOOP AT tp_final.
        MOVE :tp_final-lifnr TO wa_temp-lifnr,
              tp_final-ekorg TO wa_temp-ekorg,
              tp_final-ekgrp TO wa_temp-ekgrp,
              tp_final-bukrs TO wa_temp-bukrs.
    *C-for each new vendor
    *C-pass header details to transaction
        AT NEW lifnr.
          REFRESH bdcdata.
          PERFORM :bdc_dynpro      USING 'SAPMM06E' '0200',
                   bdc_field       USING 'BDC_OKCODE'
                                       '/00',
                   bdc_field       USING 'EKKO-LIFNR'
                                   wa_temp-lifnr,
                   bdc_field       USING 'EKKO-EKORG'
                                   wa_temp-ekorg,
                   bdc_field       USING 'EKKO-EKGRP'
                                        wa_temp-ekgrp,
                   bdc_dynpro      USING 'SAPMM06E' '0514',
                   bdc_field       USING 'BDC_OKCODE'
                                        '=ENTE',
                   bdc_field       USING 'EKKO-BUKRS'
                                         wa_temp-bukrs,
                   bdc_dynpro      USING 'SAPMM06E' '0201',
                   bdc_field       USING 'BDC_OKCODE'
                                        '/00',
                   bdc_field       USING 'EKKO-KDATE'
                                        '12/31/9999'.
        ENDAT.
    *C-passing item level details to transaction
        PERFORM :bdc_dynpro     USING 'SAPMM06E' '0220',
                 bdc_field      USING 'BDC_OKCODE'
                                      '/00'.
        CONCATENATE  'EKPO-EMATN(' w_count')'  INTO w_str.
        PERFORM bdc_field USING w_str tp_final-ematn.
        CONCATENATE 'EKPO-KTMNG(' w_count')' INTO w_str.
        PERFORM bdc_field USING w_str tp_final-ktmng.
        CONCATENATE  'EKPO-NETPR(' w_count')'  INTO w_str.
        PERFORM bdc_field USING w_str tp_final-netpr.
        CONCATENATE  'EKPO-WERKS(' w_count')'  INTO w_str.
        PERFORM bdc_field USING w_str tp_final-werks.
        PERFORM:bdc_dynpro      USING 'SAPMM06E' '0211',
                bdc_dynpro      USING 'SAPMM06E' '0220',
                bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
    *C-Incrementing count for insertin next
    *C-line item for the same vendor
        w_count = w_count + '01'.
        CONCATENATE '0' w_count INTO w_count.
    *C-For different vendors save details and create contract.
        AT END OF lifnr.
          PERFORM : bdc_dynpro      USING 'SAPMM06E' '0211',
                    bdc_dynpro      USING 'SAPMM06E' '0220',
                    bdc_field       USING 'BDC_CURSOR'
                                        'RM06E-EBELP',
                    bdc_field       USING 'BDC_OKCODE'
                                        '=BU',
                    bdc_transaction USING 'ME31K'.
    *C-resetting w_count for new vendor
          w_count = '01'.
        ENDAT.
      ENDLOOP.

  • Vendor invoie for multiple POs with different payment terms

    Hi,
    We have a vendor which send a single invoice for multiple POs which have different payment terms. Now if we create a single invoice in MIRO, then only a payment term can be applied.
    However user want to pay to the vendor corresponding to the PO terms.
    Please let us know any way apart from creating multiple MIRO documents.
    Regds,
    Nand

    Hi,
    You can achieve so in standard SAP.
    Go to OBY6 and activate the check box "Enable Amount Split" in your company code. Then in MIRO, a new tab will appear in the header as "Amount Split"
    In this tab, you can split the vendor invoice in multiple lines with respective payment method and payment term.
    I hope this will help you.
    Regards,
    Gaurav

  • Label printing should be only once for a material doc number

    Hi,
    we have a tcode in which if we provide a material doc no. and number of prints..but once we print the labels,
    then again if we have to print for the same material doc no..it should not print..instead it should ask for permission to print that number again..is there any option available in scripts to do like this?

    try to maintain ztable
                     ztable fields document no , printed...
      such that to identify the docu no has been printed previously r not...
    select single printed  from ztable into printed where  docu no = p_document.
        if printed = X
          if it is printed then try to pop up a screen such thst to approve it ....
           else.
         print it strightly.....

  • Accounting doc number for a material doc

    Hi Experts,
    Pls help me to know the accouting document number for a material document.
    Is there any functional module for the above or any table fields.
    currently we are developing zprogram.
    Appreciate for advices.

    Hi
    u want Accounting document against Material document
    means
    u done GR through Migo
    and ur documennt type is We _ goods receipt - this is ur material document no
    u done invoice dopcument againmst Gr - RE Dcoument type - accounting Document No
    see when u going to Po , purchase order history
    then bothe Gr and IR document u seen
    for example :_ gR - 500000123
    and             IR 5105601234
    but when u double clcik on IR Dcoument , screen will be open
    here u also se another accounting no document see 510004563 then clcik on this field and f1 then u see table and field
    i can tell u u doing GR 5000000123
    at the time of ir two document no genrated
    one for document for Mm Point of view and one for Fianance point of view
    means 5105601234 is MM Accounting dcouemnt
               510004563 is finance accounting document
    i hope u clear that
    if any query revert back
    Regards
    Roobal

  • Same vendor code for multiple company codes

    Can we have same vendor code for two different company codes ?

    Yes u can use same code of vendor in different company code
    only u will have to extend this vendor code to other company code in xk01
    this is possible as number range is set on vendoe Account group
    and same vendoe code and be used in 2 or many different co codes with different company code data
    hope this helps
    Edited by: Umakant Bhangale on Oct 11, 2010 5:35 PM

  • Excise Invoice Tab is not displaying in MIGO Display for 541 material docs.

    Dear All,
    Excise Invoice Tab is not getting displayed in MIGO Display for 541(Transfer posting to Vendor) material documents.
    I did tranfer posting of some raw materials to the Vendor in MB1B with the movement type 541
    and after that i have created a Subcontracting Challan with the reference of the above created transfer posting
    material document. 
    Now i need the Sub contracting challan number to be displayed in the Excise Tab of the transfer posting material document.
    But if i display the Transfer posting material document in MIGO, the Excise Tab is not getting displayed.
    Kindly help on this so that i can view the Sub contracting challan number in the display of the respective Trasfer posting material document in MIGO.
    Thanks & Regards.

    Pls confirm if you are following the SC process sequence :
    u2022     Creation of Subcontracting PO, here in conditions tab maintain the price (Subcontracting charge) (ME21N)
    u2022     Transfer Posting of Components to Subcontractor ( Movmt Type - 541) (MB1B/ME2O/MIGO)
    u2022     Creation of Subcontracting Challan w.r.t. Transfer Posting Doc (J1IF01) - This challan will have the details normally company needs, in case client need more ... ABAPer have to develop customized smart form
    u2022     Goods Receipt w.r.t. Subcontracting PO and Refer Subcontracting Challan at the time of GR (MIGO) {GR with 101 and auto consumption of components with 543 movement}
    u2022     Reconciliation of Subcontracting Challan (J1IFQ)
    u2022     Completion of Subcontracting Challan (J1IF13)
    u2022     Generation of Annexure IV (J1IFR

  • Vendor return via delivery, material sales view needed?

    Hi,
    We wish to retur material to vendor via Delivery process Return PO --> Delivery -->  Goods issue
    We ticketed 'Return to Vendor' checkbox, we created ship-to customer and saved Vendor
    now my question is Do we need create material master sales view??
    Ideally since thse will be purchase materials will not have sales view
    I didnt check, can some one please through light here

    now my question is Do we need create material master sales view??
    Yes,you need to extend material master(using MM01)
    for sales view i.e,sales orgn1,sales orgn2,sales:general plant data.

  • Vendor Returns for SLED materials which are blocked

    Hi All,
        We have certain materials for which Shelf Life has been expired. Using QA07, we have blocked these materials. Now we need to return those materials to vendor. We tried creating return PO. While doing MIGO (using 161 mov type ), it is showing the error "SLED 09.06.2011 of batch A has been exceeded".
    Please let us know how to return those material to vendor from blocked stock.
    Regards,
    Rosh

    Hi,
    It depends if vendor is ready to accept the expired materials then we return it to vendor.
    If this is not the same then we have to keep it blocked (Transfer from unrestricted to blocked stock, MvT - 344) for that time till we destroy (scrap) it. And once we have decided to scrap it then we do Goods Issue using MvT 551.

  • Reg- Single invoice for multiple delivery docs

    Dear All,
          WIth the suggestions from the below given thread, i have changed the routines in copying control for item level as 03.
    SAP ERP Sales and Distribution (SAP SD)
    Using delivery duelist(VF04) , I selected 2 pending docs and tried to create billing doc , but it got created as separate invoice. what is the actual process to create single invoice from multiple delivery document.
    Rgds

    Those deliveries having same criteria like,
    1.  Payer
    2.  Payment Term
    3.  Incoterms
    4.  Destination country
    5.  Billing date
    6.  Actual Goods issue date
    7.  Foreign data trade
    8.  Billing doc type
    9.  Shipping conditions
    10  Account assignmment group
    11. Exchange rate
    12  Billing relevance field in the item category
    13  Sold to party
    will be combined into one Billing document automatically and this controlled from the copy control table. and it VTFL  choose your delivery header  and in that at item level VBRK/VBRP should be 001
    In VF01 you can input three or more such deliveries and execute then those will be combined in to a single bill and you can do that in VF04 also
    Regards
    Raja

  • Subsequent settlement for multiple material

    Hi, everyone,
    I have a requirement for subsequent settlement.
    The vendor will rebate a fixed amount when the total purchasing QTY more than 100,000 pcs for material A, plus material  B, plus material C.
    When I create the sebsequent settlement, I can only input the material A, B, C one by one, and the system calculate the business volumn based on the indivdual material also.
    The key requirement is the rebate was based on the TOTAL QTY of material A, B, C.
    Would you please give me a help? Should I use the settle group in info record? Less document for it.
    Thanks!
    Tony

    Hi ,
    rather than going material rebate while selecting rebate arrangement type select grp rebate or rebate to do this proces
    regards

Maybe you are looking for

  • Itunes 10.5.2 fails during upgrade install

    I am running itunes 10.1 on a external hard drive since my PC hard drive is too small to hold the library.  The file is downloaded successfully to my HP extrnal hard drive H:.  When I try to run the upgrade file it goes to windows installer and this

  • MTP WiFi pair with Windows 8.1?

    Has anybody made ths work? Trying to pair my Xperia Tablet Z with my Win 8.1 laptop. Both WiFis are on. Setting in tablet Xperia menu enables MTP. Plug in USB cable. PC host sees tablet and its files just fine but there is never an offer to pair fo a

  • The icon for adobe revel is not there in Photoshop 12

    When I open photoshop 12 and go to mobile albums the yellow icon for syncing with adobe revel is not there.  Also, if the try the drop-down for opening Adobe Revel it is shaded and I cannot open it that way.  Can anyone tell me how to solve this prob

  • How to fetch last changed date for Header in me22n?

    Hi Experts, I need to create a report for PO, where I have created one screen tab in Header level(customer data), therefore I need to fetch last changed date for header , I must mention that I do not want last changed date for item level, only for he

  • How to activate a iphone 4 after erasing it from find my iphone

    I have no SIM and I forgot my restrictions password and I erased my iphone 4 from my icloud account tried to reactivate it but it says a error accurs reactivating  the iphone and I dont know what to do but I really need to reactivate it and im only 1