Orginal invoice no in a sales return

Dear Gurus,
I'm developing a report where I have to show the original invoice no in a sales return. My input value would be PO field in the order.
Pl help
Tks

Hi friend,
You cant get the Original invoice number from the PO, instead you can get the ORIGINAL INVOICE NUMBER  from the retrn sales order or Billing document for returns
Goto VBRK for the return Billing document and get the field SFAKN  which is the ORIGINAL INVOICE NUMBER.
Hope it will resolve you issue.
regards,
santosh

Similar Messages

  • User Exits for Invoice creation ,cancellation and sales return

    Hi Gurus,
    Pl help me it's very urgent.
    I did not find any user exit invoice creation so i wrote the following code in include program
    MV60AF0B_BELEG_SICHERN.
    This code is to update the Z*table while saving invoice ,cancellation and sales return.
    The code modification is like below
          FORM BELEG_SICHERN                                            *
          Buchen Fakturabelege                                          *
    FORM BELEG_SICHERN.
      READ TABLE XVBRK INDEX 1.
      IF SY-SUBRC NE 0.
        CALL FUNCTION 'DEQUEUE_ALL'.
        MESSAGE S032.
        EXIT.
      ENDIF.
      IF SAMH_MOD = ON.
        EXPORT XKOMFK TO MEMORY ID 'SDBILLDL'.
      ENDIF.
      DATA: CALC_TYPE.
      IF REBATE_DETERMINED = 'Y'.
        CALC_TYPE = 'A'.
      ELSE.
        CALC_TYPE = 'I'.
      ENDIF.
    *{   INSERT         RD1K903017                                        1
    Work Area*********************
    data : wa_xvbrk type VBRKVB.
    data : wa_xvbrp type vbrpvb.
    data : wa_zmigo type zmigo.
    data : wa_vbrp type vbrp.
    Internal table Creation*******
    DATA:  BEGIN OF tab_XVBRP OCCURS 100.
             INCLUDE STRUCTURE VBRPVB.
    DATA:  END OF tab_XVBRP.
    data : begin of tab_vbeln occurs 10,
           vbeln type vbrk-vbeln,
           knumv type vbrk-knumv,
           end of tab_vbeln.
    data : tab_zmigo type table of zmigo.
    data : tab_vbrp type table of vbrp.
    *****Data declaration*************
    data : v_no_of_inv type i.
    data : v_vbeln_no(10) type n.
    data : v_last_inv_no(10) type n.
    data : v_first_inv_no(10) type c.
    data : v_tot_qty type i.
    data : v_frbnr type mkpf-frbnr.
    *******Ranges*********************
    ranges : r_vbeln for vbrk-vbeln.
    *****Populating IT****************
    tab_xvbrp[] = xvbrp[].
    describe table xvbrk lines v_no_of_inv.
    *}   INSERT
      CALL FUNCTION 'RV_INVOICE_DOCUMENT_ADD'
           EXPORTING
                VBSK_I           = VBSK
                WITH_POSTING     = 'A'
                PREISFINDUNGSART = CALC_TYPE
           IMPORTING
                VBSK_E           = VBSK
           TABLES
                XKOMFK           = XKOMFK
                XTHEAD           = XTHEAD
                XVBFS            = XVBFS
                XVBSS            = XVBSS
                XVBRK            = XVBRK
                XVBRP            = XVBRP
                XVBPA            = XVBPA
                XKOMV            = XKOMV.
    *{   INSERT         RD1K903017                                        2
    data : v_count type i,v_fkimg type i .
    data : v_no_of_records(10) type n.
    wa_xvbrk = xvbrk.
    ********Selecting the last rec no from ZMIGO
          select max( sr_no ) from zmigo into v_no_of_records.
    *****If Distribution channel is not ZB*********
    if  wa_xvbrk-vtweg ne 'ZB' and ( wa_xvbrk-fkart = 'ZRIN' or wa_xvbrk-fkart = 'ZRTE' ).
    if v_no_of_inv = 1.              " Process only when there is one invoice
    loop at tab_xvbrp into wa_xvbrp  where (           matnr ne 'CDGSTP0001'       and
                                                       matnr ne 'CD-RW'            and
                                                       matnr ne 'CD-RW65OHS'       and
                                                       matnr ne 'CABLE'            and
                                                       matnr ne 'CD-R'             and
                                                       matnr ne 'CDQ80N4'          and
                                                       matnr ne 'GENERAL'          and
                                                       matnr ne 'NERO'             and
                                                       matnr ne 'OTHERS'           and
                                                       matnr ne 'SPARE PARTS'      and
                                                       matnr ne 'PROMO ITEM'       and
                                                       matnr ne 'PROMO-1'          and
                                                       matnr ne 'PROMO-2'          and
                                                       matnr ne 'PROMO-3'          and
                                                       matnr ne 'PROMO-4'          and
                                                       matnr ne 'PROMO-5'          and
                                                       matnr ne 'PROMO-6'          and
                                                       matnr ne 'PROMO-7'          and
                                                       matnr ne 'PROMO-8'          and
                                                       matnr ne 'PROMO-9'          and
                                                       matnr ne 'PROMO-10' ).
    v_fkimg = wa_xvbrp-fkimg .
    v_fkimg = v_fkimg / 1000.
                do v_fkimg times.
                  v_no_of_records = v_no_of_records + 1.
                  wa_zmigo-sr_no = v_no_of_records.
                  wa_zmigo-po_no = wa_xvbrk-vbeln.
                  wa_zmigo-item_no  = wa_xvbrp-posnr.
                 wa_zmigo-mblnr  = wa_xmkpf-mblnr.
                  wa_zmigo-doc_type = wa_xvbrk-fkart.
                  wa_zmigo-posting_date = wa_xvbrk-fkdat.
                  wa_zmigo-created_on = sy-datum.
                  wa_zmigo-created_time = sy-uzeit.
                 wa_zmigo-bill_lno = v_frbnr.
                  wa_zmigo-material = wa_xvbrp-matnr.
                 wa_zmigo-inv_no = wa_xvbrk-vbeln.
                 wa_zmigo-inv_item_no = wa_xvbrp-posnr.
                  wa_zmigo-plant = wa_xvbrp-werks.
                  wa_zmigo-inv_date = wa_xvbrk-fkdat.
                  wa_zmigo-customer = wa_xvbrk-kunag.
                  wa_zmigo-unit = 1.
                  wa_zmigo-mtype = '601'.
                  insert into zmigo values wa_zmigo.
                enddo.
                clear : wa_zmigo.
    endloop.
    clear : v_count,v_fkimg,wa_zmigo.
    refresh tab_zmigo[].
    clear v_no_of_inv.
    else.                              "When there are Split Invoices
    v_last_inv_no = wa_xvbrk-vbeln.
    v_vbeln_no = v_last_inv_no - v_no_of_inv + 1.
    v_first_inv_no = v_vbeln_no.
    sort tab_xvbrp by vbeln.
    loop at tab_xvbrp into wa_xvbrp  where (           matnr ne 'CDGSTP0001'       and
                                                       matnr ne 'CD-RW'            and
                                                       matnr ne 'CD-RW65OHS'       and
                                                       matnr ne 'CABLE'            and
                                                       matnr ne 'CD-R'             and
                                                       matnr ne 'CDQ80N4'          and
                                                       matnr ne 'GENERAL'          and
                                                       matnr ne 'NERO'             and
                                                       matnr ne 'OTHERS'           and
                                                       matnr ne 'SPARE PARTS'      and
                                                       matnr ne 'PROMO ITEM'       and
                                                       matnr ne 'PROMO-1'          and
                                                       matnr ne 'PROMO-2'          and
                                                       matnr ne 'PROMO-3'          and
                                                       matnr ne 'PROMO-4'          and
                                                       matnr ne 'PROMO-5'          and
                                                       matnr ne 'PROMO-6'          and
                                                       matnr ne 'PROMO-7'          and
                                                       matnr ne 'PROMO-8'          and
                                                       matnr ne 'PROMO-9'          and
                                                       matnr ne 'PROMO-10' ).
    v_fkimg = wa_xvbrp-fkimg .
    v_fkimg = v_fkimg / 1000.
                do v_fkimg times.
                  v_no_of_records = v_no_of_records + 1.
                  wa_zmigo-sr_no = v_no_of_records.
                  wa_zmigo-po_no = v_vbeln_no.                      "wa_vbrp-vbeln.
                  wa_zmigo-item_no  = wa_xvbrp-posnr.
                 wa_zmigo-mblnr  = wa_xmkpf-mblnr.
                  wa_zmigo-doc_type = wa_xvbrk-fkart.
                  wa_zmigo-posting_date = wa_xvbrk-fkdat.
                  wa_zmigo-created_on = sy-datum.
                  wa_zmigo-created_time = sy-uzeit.
                 wa_zmigo-bill_lno = v_frbnr.
                  wa_zmigo-material = wa_xvbrp-matnr.
                 wa_zmigo-inv_no = v_vbeln_no.
                 wa_zmigo-inv_item_no = wa_xvbrp-posnr.
                  wa_zmigo-plant = wa_xvbrp-werks.
                  wa_zmigo-inv_date = wa_xvbrk-fkdat.
                  wa_zmigo-customer = wa_xvbrk-kunag.
                  wa_zmigo-unit = 1.
                  wa_zmigo-mtype = '601'.
                  insert into zmigo values wa_zmigo.
                enddo.
                clear : wa_zmigo.
    at end of vbeln.
    v_vbeln_no = v_vbeln_no + 1.
    endat.
    clear : v_count,v_fkimg,wa_zmigo.
    refresh tab_zmigo[].
    endloop.
    endif.                             "End of first 2nd IF.
    clear : v_no_of_inv, v_vbeln_no.
    endif.
    ****************Sales return************************************
    if  wa_xvbrk-fkart = 'ZRRE' and wa_xvbrk-vtweg ne 'ZB'.
    loop at tab_xvbrp into wa_xvbrp where (            matnr ne 'CDGSTP0001'       and
                                                       matnr ne 'CD-RW'            and
                                                       matnr ne 'CD-RW65OHS'       and
                                                       matnr ne 'CABLE'            and
                                                       matnr ne 'CD-R'             and
                                                       matnr ne 'CDQ80N4'          and
                                                       matnr ne 'GENERAL'          and
                                                       matnr ne 'NERO'             and
                                                       matnr ne 'OTHERS'           and
                                                       matnr ne 'SPARE PARTS'      and
                                                       matnr ne 'PROMO ITEM'       and
                                                       matnr ne 'PROMO-1'          and
                                                       matnr ne 'PROMO-2'          and
                                                       matnr ne 'PROMO-3'          and
                                                       matnr ne 'PROMO-4'          and
                                                       matnr ne 'PROMO-5'          and
                                                       matnr ne 'PROMO-6'          and
                                                       matnr ne 'PROMO-7'          and
                                                       matnr ne 'PROMO-8'          and
                                                       matnr ne 'PROMO-9'          and
                                                       matnr ne 'PROMO-10' ).
             v_fkimg = wa_xvbrp-fkimg.
             v_fkimg = v_fkimg / 1000.
             v_tot_qty = v_tot_qty + v_fkimg.
              do v_fkimg times.
                v_no_of_records = v_no_of_records + 1.
                wa_zmigo-sr_no = v_no_of_records.
                wa_zmigo-po_no = wa_xvbrk-vbeln.
                wa_zmigo-item_no  = wa_xvbrp-posnr.
                wa_zmigo-doc_type = wa_xvbrk-fkart.
                wa_zmigo-posting_date = wa_xvbrk-fkdat.
                wa_zmigo-created_on = sy-datum.
                wa_zmigo-created_time = sy-uzeit.
                wa_zmigo-material = wa_xvbrp-matnr.
               wa_zmigo-inv_no = wa_xvbrk-vbeln.
               wa_zmigo-inv_item_no = wa_xvbrp-posnr.
                wa_zmigo-plant = wa_xvbrp-werks.
                wa_zmigo-inv_date = wa_xvbrk-fkdat.
                wa_zmigo-customer = wa_xvbrk-kunag.
                wa_zmigo-unit = 1.
                wa_zmigo-mtype = '651'.
                condense wa_xvbrk-xblnr.
                wa_zmigo-reference = wa_xvbrk-xblnr.
    ********Bill of lading no**
               select single bill_lno from zmigo_final into v_frbnr where inv_no = wa_xvbrk-xblnr and material = wa_xvbrp-matnr.
               if sy-subrc eq 0.
               wa_zmigo-bill_lno = v_frbnr.
               endif.
                insert into zmigo values wa_zmigo.
              enddo.
              clear : wa_zmigo,wa_xvbrp , v_fkimg, v_frbnr.
    endloop.
    endif.
    *******Invoice Cancellation*****************************
    if  wa_xvbrk-fkart = 'ZRS1' and wa_xvbrk-vtweg ne 'ZB'.
    delete tab_xvbrp[] where shkzg eq 'X'.
    loop at tab_xvbrp into wa_xvbrp where (            matnr ne 'CDGSTP0001'       and
                                                       matnr ne 'CD-RW'            and
                                                       matnr ne 'CD-RW65OHS'       and
                                                       matnr ne 'CABLE'            and
                                                       matnr ne 'CD-R'             and
                                                       matnr ne 'CDQ80N4'          and
                                                       matnr ne 'GENERAL'          and
                                                       matnr ne 'NERO'             and
                                                       matnr ne 'OTHERS'           and
                                                       matnr ne 'SPARE PARTS'      and
                                                       matnr ne 'PROMO ITEM'       and
                                                       matnr ne 'PROMO-1'          and
                                                       matnr ne 'PROMO-2'          and
                                                       matnr ne 'PROMO-3'          and
                                                       matnr ne 'PROMO-4'          and
                                                       matnr ne 'PROMO-5'          and
                                                       matnr ne 'PROMO-6'          and
                                                       matnr ne 'PROMO-7'          and
                                                       matnr ne 'PROMO-8'          and
                                                       matnr ne 'PROMO-9'          and
                                                       matnr ne 'PROMO-10' ).
             v_fkimg = wa_xvbrp-fkimg.
             v_fkimg = v_fkimg / 1000.
             v_tot_qty = v_tot_qty + v_fkimg.
              do v_fkimg times.
                v_no_of_records = v_no_of_records + 1.
                wa_zmigo-sr_no = v_no_of_records.
                wa_zmigo-po_no = wa_xvbrk-vbeln.
                wa_zmigo-item_no  = wa_xvbrp-posnr.
                wa_zmigo-doc_type = wa_xvbrk-fkart.
                wa_zmigo-posting_date = wa_xvbrk-fkdat.
                wa_zmigo-created_on = sy-datum.
                wa_zmigo-created_time = sy-uzeit.
                wa_zmigo-material = wa_xvbrp-matnr.
               wa_zmigo-inv_no = wa_xvbrk-vbeln.
               wa_zmigo-inv_item_no = wa_xvbrp-posnr.
                wa_zmigo-plant = wa_xvbrp-werks.
                wa_zmigo-inv_date = wa_xvbrk-fkdat.
                wa_zmigo-customer = wa_xvbrk-kunag.
                wa_zmigo-unit = 1.
                condense wa_xvbrk-zuonr.
                wa_zmigo-reference = wa_xvbrk-zuonr.
                wa_zmigo-mtype = '602'.
    ********Bill of lading no**
               select single bill_lno from zmigo_final into v_frbnr where inv_no = wa_xvbrk-xblnr and material = wa_xvbrp-matnr.
               if sy-subrc eq 0.
               wa_zmigo-bill_lno = v_frbnr.
               endif.
                insert into zmigo values wa_zmigo.
              enddo.
              clear : wa_zmigo,wa_xvbrp , v_fkimg.
    endloop.
    endif.
    clear : v_no_of_records.
    *}   INSERT
      CALL FUNCTION 'STACK_RESET'.
      R185D-DATALOSS = SPACE.
      FOLGEAUFRUF102 = SPACE.
      PERFORM SETPAR_INIT.
    *{   INSERT         RD1K903017                                        3
    *}   INSERT
      LEAVE.
    ENDFORM.
    This program is working fine for single user but in production where no of people are creating the invoices from different places the data is not getting updated in table ZMIGO.
    sometime populating with wrong data , partial data and sometimes no updation at all.
    I have used the table locking system enqueue and dequeue FM's before n after updation but still the same
    thing is happening.
    What could be the reason.
    Looking for help very urgent any other alternate option.

    Hi,
    Go thru these..
    Enhancement
    SDVFX009 Billing doc. processing KIDONO (payment reference numbe
    SDVFX010 User exit item table for the customer lines
    SDVFX011 Userexit for the komkcv- and kompcv-structures
    V05I0001 User exits for billing index
    V05N0001 User Exits for Printing Billing Docs. using POR Procedu
    V60A0001 Customer functions in the billing document
    V60P0001 Data provision for additional fields for display in lis
    V61A0001 Customer enhancement: Pricing
    SDVFX001 User exit header line in delivery to accounting
    SDVFX002 User exit for A/R line (transfer to accounting)
    SDVFX003 User exit: Cash clearing (transfer to accounting)
    SDVFX004 User exit: G/L line (transfer to accounting)
    SDVFX008 User exit: Processing of transfer structures SD-FI
    SDVFX007 User exit: Billing plan during transfer to Accounting
    SDVFX006 User exit: Tax line (transfer to accounting)
    SDVFX005 User exit: Reserves (transfer to accounting)
    Business Add-in
    SD_CIN_LV60AU02 BADI for billing
    If it is helpful rewards points
    Regards
    Pratap.M

  • Sales return - Excise invoice from depot

    Dear all,
    We are having a sales return scenario in depot which we are executing in following way.
    1) Return sales order 2) Delivery against sales order 3) PGR 4) Credit memo 5) Capture of excise invoice in J1IG against the material document posted in PGR with reference to original excise invoice.
    But when we are again creating an outgoing excises invoice from depot i.e. re-selling the same material to other customer system does not show the excise invoice in list of inward invoice.
    Request to please let us know if we have missed out on a step/ configuration to ensure that the customer return excise invoice is visible to re-sell the material from depot.
    thanks & regards,
    mahesh

    Dear  Lakshmipathi,
    Thanks for the reply, did go through the thread that you have suggested before i posted this one.
    Just wanted to know that we update the register with material document number posted for transfer of material from one storage location to another which is customer return to finished storage location and not with the PGR material document number?
    5 Create Transfer posting in MB1B with movement type 453, storage location 0005 and save
    6 Note down the material document reference
    7 Go to J1IG to reverse excise issue posting
    thanks and regards,
    mahesh.

  • Sales Return for Closed Invoices

    Dear All,
    I have Created a Sales Order and corresponding DC and Invoice.Since the payment is done the status of the invoice is closed.Now i get a product back and i want to do a Sales Return.How does SAP help me in doing Sales Return for Closed Invoices/ DC.
    Thanks,
    Merle

    Hi Merle,
    This depends upon your business process and how you want to handle such cases.
    In case where you dont want to cancel the incoming payment, just create a standalone AR credit note and in the reference or remarks field, you can mentioned the invoice number to be used in reporting.
    Else, you can always cancel the payment and proceed as mentioned by Imran.
    Thanks,
    Joseph

  • FI documents during sales return & invoice cancellation

    Dear All,
    We are using two document types RA for sales return & RC for cancellation of Invoice. These documents are getting posted in Domestic Sales account.  We need to track them seperately and posted to two seperate GL A/cs. Do we need to have seperate document types for them apart from normal sales document ? What will be the account assignment to be done to have these postings done to new gl accounts ?
    Regards,
    Sadashivan

    Hi Kesh,
    The document type is common for sales as well as sales return.  Further, we are creating a new GL account for Sales Return now.  At present Sales and Sales return are commonly posted in domestic sale account. I wish to clarify that as the sales are captured through account assignment VKOA - ERL, the sales return has to be assigned through OBYC - VAX.  Is it correct ?  Like wise for cancellation of invoice is there any account assignment so that whenever the invoice is cancelled automatically posted to new gl account - "sales invoices cancelled "? That is instead of debiting sales we will be debiting sales invoice cancelled a/c credit customer a/c.
    Regards,
    Sadashivan

  • Sales return against invoices with batches.

    01.11.2010
    Hi friends,
    We are using BOM for materials. During delivery batches are determined and in the invoice i have the main material with zero quantity and zero value,  followed by the lines with the batches determined and the components.
    In case of returns i want to copy each of the batch line followed by the corresponding BOM quantity.  For eg. if the delivery quantity was 50 and 3 batches were determined of 10,15,25 then in the sales return i want the line with the batch quantity 10 and the components, followed by the batch line with quantity 15 with their components and finally the quantity 25 followed by the components for 25 nos. How can this be achieved.   Please suggest.
    Regards,
    Uday

    Hi
    You have to create your own data transfer routine for this. This routine is to be used in the copy control from invoice to order.
    Regards,
    Torben

  • Sales Return Process-Invoice(Credit Memo) with ref. to delivery

    Dear All,
    I am doing sales return process.
    Sales Order-RE
    Delivery-LR
    Invoice-RE,
    with ref. to sales order it is allowing me to create invoice.
    But,with ref. to delivery it is not allowing.
    It is giving "The document is not relevant for billing".
    I have changed item category  REN for delivery (A) related billing.
    Also changed req. copy control setting.
    Can anybody guide on this issue.
    Best Regards
    Sainath

    Hello,
    Normally return credit memo will be generated with reference to the retrun order, and that is the standard SAP process. Do you have any specific requirements to have the credit memo with reference to a retrun delivery?
    The Item category REN Billing Relevence will be B as per SAP standard, if you wish to have a delivery related credit RE, the make this to A .
    Maintain the Delivery to Billing Copying control in VTFL for LR --> RE, add the item categroy REN.
    Maintain the copying requirements for header as 3 Header Del Rel and for item as 4 Deliv-Related item .
    Once these setting are done, then check whether the RE billing type is triggering from LR?
    Prase

  • Sales return before invoice generation

    Hi Experts,
    can we take material return before invoice generation
    sales order -
    >delivery----
    >sales return -
    > actual invoice
          10 nos                    10 nos                  2 nos                              8 nos
    for example sales order 10 quantity, delivery 10 quantity but 2 quantity damaged returned 2 quantity by customer good recived 2 quantity then at the end we generate invoice of 8 quantity. this is done to avoid creating credit memo a number of time.
    looking for your reply
    Regards,
    subhro.

    this is done to avoid creating credit memo a number of time
    When there is a standard procedure to create a credit memo for returns, I dont know why you want to deviate this which is not at all recommended.
    If creating credit memo is a regular process for your client (ideally it should not be the case), you can consider giving a BDC for the same.  Instead avoiding creation of credit memo is not adviceable.
    thanks
    G. Lakshmipathi

  • Automatic Excise Invoice reversal in Sales return

    Ours is a manufacturing plant.
    We sell Excisable goods to our Customer.
    Normal Sale Cycle:
    VA01-VL01N-PGI-VF01
    (Excise Invoice gets generated automatically in background as Invoice is saved)
    Our Requirement:
    Client wants to map Customer Returns Scenario.
    I have gone through helpful notes and got clear with Return proccess(SD)
    VA01-Return Order( w.r.t. Original Invoice)
    VL01N- Return Delivery (w.r.t Return Order)--PGR
    VF01--Credit Memo( w.r.t Return Order)
    I need a solution for Automatic Excise Invoice reversal as goods are returned by customer to Plant.
    Our client wants that reversal should happen automatically in background.(at any stage either as PGR is done..or else)
    Client doesnt want to go for J1IH-manual JV posting.
    kindly guide me Configuration steps to achieve this with registers updations and a/c effects.
    also correct me if i am wrong in above understanding.
    Thanks ,

    Hi,
    Thanks for ur suggestion.
    (Firstly i created VA01-Return order-VL01N-Return Deliv-PGR-VF01-Credit memo-w.r.t REturn Order)
    As suggested i tried with J1IH-Other Adju.
    A/c Entries of Original Excise Invoice:
    I inputed in J1IH -Other Adj.
    Document number:-Excise Invoice Number( is it correct reference)
    Year:
    com. code:
    plant:
    Series grp:
    Modvat Account: RG23A:
    I manually inserted line item,Material Number and BED,E.CESS,S.H.CESS values as per Excise Invoice and later save the document.Excise JV was generated with PART 2 entries updated..
    A/c Entries of Excise JV:
    Here kindly give your feedback whether above process and entries are correct.
    Q:How will i reconcile Original Excise Invoice and Excise JV,since its now showing in Doc Flow.
        Does it reflect in any t code.
    Thanks ,
    Vilas

  • Credit memo -Depot sale return

    Hello Guru,
    I am facing problem in credit return memo regarding excise amount.
    Since this is depot scenario after doing J1IJ i am doing invoice where excise value is picking from J1IJ...which is ok.
    when i am doing depot return with reference to invoice it is copying right excise value from invoice.....which is ok.
    But when i am doing my credit memo for return it is not copying excise value from sales return order.
    Copy control is ok i.e. D.
    Values of excise in return credit memo is copied from the orginal sales order.
    Also i tried with doing first J1IG to capture return excise and then i did vf01, even though i am not getting the excise value which is in sales return order.whie generating the credit memo system is doing the recalculation of pricing.
    Regards
    amit Varma

    HI,
    Please follow the below link and check the configuration as per standard SAP:-
    http://www.sap-img.com/sap-sd/sap-sd-cin-configuration.htm
    Thanks & Regards,
    Rahul Verulkar

  • Sales return without excise duty

    How to account the sales return material that are already invoiced with out Excise duty. Please help with step by step process in making sales return material to stock entry or unrestricted stock for further sales of the return material.
    Thanks in advance.

    1. Create return order with reference to orginal bill document no. all details will be copied from it.
    2. Do post goods receipt(VL01N).
    When it is received,Move stock to production storage location,You can rework it & move stock respective storage location
    for resale.
    3. Do credit memo with reference to return order using VF01.

  • Free Goods Sales Return

    Dear All ,
    I want to configure free Goods ( Exclusive ) Sales Return Process . Pl. Help me out
    Ex : 10 + 1 Free Goods and Complete sales  is returned with free goods.
    Thanks in adv
    Regards

    Hi TKG997 ,
    Assign the  the  item category  for higher level item TAN  item category to be determined should be RENN in Configuration . Then maintain Copy control settings is  required to be maintained from invoice or Return order.
    This should come through . I am not in front of the SAP system to test this requirement . Hence ,Please test and confirm .
    Thanks and regards
    Veera
    Edited by: veera PV on Jan 19, 2011 12:28 PM

  • Incorrect SALE RETURN A/C in GL A/C Determination

    Hello All,
    We recently detected, that the Sales Return A/C has been incorrectly defined in the GL A/C Determination.
    As a result all Sales credit notes (although thankfully very few in number) have been incorrectly posted.
    After correcting the account settings, how to fix the previously posted transactions ?
    Please advise suitably.
    Regards,
    Gautam

    hi ganguly,
    Using General Ledger Report,Tick Account,Detick BP,Enter wrong sales return gl in from & to,
    Enter posting date range,In expaned selection creteria,Select Orginal Journal A/R credit memo.
    Click Ok.
    Jeyakanthan

  • Free Goods are not getting exploded in to Sales Return Order

    Dear All
    I have created one order in which I am giving 13:1 (inclusive) free goods using VBN1.
    Order Qty               Converted to             Item Category 
    288  (13:1)              266  (With Price)      ZTAN
                                   22  (Free)               ZTNN
    I am having no problem upto Invoice. But while making return sales order with ref. to the invoice, it's throwing a message 'The system didn't find a valid bill of material' and free qty of 22 pcs are not getting imported into the return order.
    Please help

    Hi
    Returns Orders has document category H where the free goods are not supported may be because of this it is not get imported.See details below.
    http://help.sap.com/saphelp_47x200/helpdata/en/dd/55fa4e545a11d1a7020000e829fd11/frameset.htm
    Regards
    Ramesh

  • CIN - Excise created in case of sales return

    Hi all,
    After reading lot of post about argument in object, I have undertand that, in case of sales return, to create excise invoice I have to do:
    T.Code J1IH and do the following:-
    Customer Credit
    Choose the 'Additional Excise' input the original excise invoice reference, document year, company code, plant and excise group and execute. There input manually what value you need to give credit and save.
    Cenvat Debit
    Choose 'Other Adjustments' and here also, maintain the datas whatever you input as above and save.
    Is correct, If I have a return referred to an invoice with BED, CESS and S&HCess, to use "Additional Excise" (RG23A) to insert BED and S&HCess and "Other Adjustments" (PLA) for CESS? this means 2 excise documents to rectify excise amounts in case of return.
    Thanks in advance for every contribution to clarify this dubt.
    Gianpaolo

    "Additional Excise" subscreen is for differential excise posting, ie, in case you made any mistakake in ED Calculation or excise invoice. In order to correct that, we use that.
    Rgds
    Sumanth.G
    Consultant/Systems Analyst - SAP SD/MM

Maybe you are looking for

  • Archiving old TM files--new TM disk

    I'm moving my TM setup to an NAS drive. I originally wanted to use the NAS for iTunes, but that was too problematic and I discovered you can't back up an NAS drive to TM. So, I'm moving my iTunes folder to my old TM drive (USB external) and using the

  • Number of of lines in af row.

    Hi Experts. I need some help. I'm trying to display JTextAreas in a table using the TableCellRenderer interface. My problem is that I have to display more than one line in each row (I need linewrap). I think the tables cell size prevents the expansio

  • Can i Scroll sideways with a wheel mouse?

    This is one of those things i've noticed i cant do as a new mac user. On windows i can scroll sideways(if that was the only way to scroll)with my wheel mouse. Is it possible to do this in OSX?

  • Printing a tree in abap report

    Hello Experts! I want to make an ALV tree... but only show the part of the tree (not the columns of the table How can i do this? Thanks a lot! Edited by: Mariano Gallicchio on Jul 3, 2009 4:21 PM

  • One question about Servlet

    Container will use HttpServletRequest and HttpServletResponse objects to encapsulate a special HTTP request(received from WebClient) and Response gernerated by servlet My qeustion is : if same webclient requests two times, then Container will use sam