Sales returns-tax

dear all,
i have a scenario.
in sales returns process for dealer billing. there is  no tax credit to customer after 6 months.
pls explain
regards
y.reddy

thanks for ur reply.
i was still working on this issue.i have a bunch of doubts.
1.if we check tax condition type as statistical in pricing procedure.it should not pass to accounting.but even after deleting acc key for respective condition type.tax is passing to accounting.
where can we observe the effect if we check a tax condition type as statistical.
regards
reddy
Edited by: YUGANDHAR REDDY on Apr 29, 2008 3:20 PM

Similar Messages

  • Sales return tax procedure

    Respected ones,
    while creating a sales return order based on the billing document date , if the sales return is within six months we need to capture net value + tax and after six months we need to capture only the net value . How do go about this.
    I read in the forums and they asked to wiite a routine for this.
    what would be the logic behind this.

    thanks..........not received any reply from forums

  • Hello programs on sales and tax returns

    HI ,
    Can any body send sample programs of sales and tax returns of pariticular state .
    i have to use bkpf and bseg tables.
    thanks,
    aravind.

    Hi Radha
    Sales Tax is what u incur on the sales u make as in on Customers - Output Tax -
    Purchase tax is what u incur for ur vendors - Input Tax
    CIN - is specific to Country India Version
    In SAP, we first map a tax procedure to the country specifying whethere there is going to be a Jurisdiction Code or not, then we define input/output taxes in TC FTXP {in FI}; where theSD team will define a condition record mapped to an account key which they will relate to our tax code and they define condition master recd in VK11 for domestic taxes per country.
    Hope this will give u a bried idea on what u wanted to knw
    Rukshana

  • Sales return -vat G/L account

    hai gurus,
    Iam here discusing about a sales return process. I have a scenario like the client sells 1000 nos of goods
    ,among that 10 comes as returns. i will refeer to billing document and create a sales return order now quality says among 10 nos of returns 8 can be reused again but 2 nos is fully damaged during transit.
    Now i do PGR and after that when credit memo comes i will do for 8 nos and 2 nos i will do another credit memo.during the 2nos i claim to insurance account .here the price,Bed,Schess,Ecess goes to insurance claim account and the client wants the vat which he took from his client also to be gng to the insurance claim account.
    As vat reverses back to the same vat g/l account.
    now can any suggest me is there any way to transfer the vat amunt to another insurance claim G/L account
    as per standard SAP it reverses the same vat G/L account.
    tax ink is been used and vat g/l account are triggered through tax code and if necessary through table entry t030k with respect to business place
    with regards

    We too have same req from the client & we did in below method.
    we have created new condition table in VKOA - with sales org - dist channel- item cateogry(eg:REN) -
    assign this table to resp access seq - make sure , it should be in first line , out of all the other tables. ( the reason is, if system finds one condition record with any resp table, it will stop searching for other condition records).
    maintian return GL account  against the above combinaiton created with this new table.
    its working fine for us, ( if you dont find , Item category field, in field catelog, add this field by selecting , New entries- )
    revert

  • 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 from Customer after 180 days

    Hi,
    I have a requirement on sales return, if the return is done after 180 days, government does not allow to adjust the respective tax amount relating to that return goods.
    For example:/sales invoice:
    Customer Dr 110
    Tax          Cr   10
    Sales       Cr 100
    In case of return this entry will reversed (if it is partial partial amount will be reversed).
    Requirement:
    If the return is happened after 180 days, tax reverse can not be accepted.
    In this case what is the scenario.
    1.  Is this tax amount goes to Tax expnese account (Dr P/L account)
    2.  Is this tax amount added to Material Stock value
    Please update me which more details.
    Thanks
    Partha

    Hi,
    Perhaps Note 34526 - Delivery free of charge and value-added tax will suggest you a solution. You must handle it with a VOFM in the pricing procedure.
    I hope this helps you
    Regards,
    Eduardo

  • Accounting documents not cleared - sales return being procced

    Dear Experts,
    In sales return process, material was received by Movt.651, credit memo raised, while seeing the document flow the sales return document showing as "being processed" and Accounting documents showing as "not cleared". how to clear the  accouting document.
    J.Francis

    Hi experts,
    Withholding tax was deducted, challan was prepared by j1inchln, bank challan was updated by j1inbank, checked all details are flowing in j1inmis. while printing the tds certificate  tds-basic and ecess amounts are not appearing in the certificate. Can you suggest what could be the reason.
    J.Francis

  • Excise return in Sales Return

    Hi All
    During sales return process how to reverse the excise duty as well as sales tax. i understand that we do Excise return in J1IH transaction code. still i want to know with reference to which excise number we do return process.
    Thanks in advance

    In case customer returns the partial goods how to reverse the partial excise invoice.I hope it is not possible in J1iH.Could you please explanin or else any other method is there?
    Is there any transaction code to check the available excise stock?
    Regards..,
    Karthik

  • Sales Return Scenario

    Hi,
    I have a query on the follwoing sales return scenario.
    A manufacturer has  two plants viz: a manufacturing plant and a sales depot which are located in two different states which will typically relate to two sales organisations . A sale has been done to a customer from the manufacturing plant. The customer wants to return some material due to damages/defect but can only send the material to the depot location since it is nearer to him. since the sale is from manufacturing plant how do we execute the returns process. Please note there are Excise and tax implications.
    Appreciate some suggestion  on this

    Hi sir,
    In this scenario I understand that under the same company with different Exicise and tax camponents, you have a plant and a depot in different states fine.
    You can take returns at depot as required by the customer, maintain proper pricing for stock trancefer from depot to plant taking Excise and tax part in to account., and try it out.
    Regards
    DSR

  • Sales Return, Zero Price

    We were on the user testing stage. Something went wrong to the production server and the back-up copy was loaded to that production server. Configurations were transferred and upload of data is being done.
    One of the issues I encountered is about sales return (Reg Ret Charge VAT). My client says before when they enter the material, the amount (or price of the material) becomes zero but this time the amount reflects the real amount of the material (just like making a regular order). Client want to put back the original setting wherein the price becomes zero when material is entered for sales returns.
    Please guide me on what I can check.

    Your initial post gave me the impression that RE (return order) is created and prices in Tab condition are given manually. In a later post, you are saying RE (return order) is created by referring to a sales order. Which one is it?
    go to VA02, in  your return order. check what is the item category?
    Then go to VOV7, and for that item category, in field "pricing" give BLANK
    In VTAA, return order <-- sales order
    For that item category, give Pricing = B (redetermine pricing) and test.
    I have been thinking,
    1) if the business does not want any prices (i.e. price = 0), then WHY are you (going to) creating a RE credit memo? As in this case, there is NOTHING to pay back to the customer.
    process = RE return order --> LR return delivery, RE credit memo
    So, explain what are the process steps you have configured in the RE process?
    2) Are there any charges you are going to payback to the customer, in this RE process?
    Freight charges, Taxes etc. etc.
    If yes, then at item category level, VOV7, you can NOT give pricing = Blank.
    This shall be applicable for the entire line.
    3) If you don't want any prices / bills -
    have you thought about RE --> SDF (subsequent delivery Free) --> LF?
    or RE --> LR
    Give some background information as to why user / client wants prices = 0? (for all material?)
    Edited by: Typewriter on Sep 24, 2011 9:15 PM

  • Create Sales Return Order by BAPI,in pricing manual conditions don't appear

    Dear All,
    While creating Sales Return Order by using BAPI function module, in pricing manual header conditions are not appearing.
    I tried following FMs for creating Sales Return Order. Sales Return Order created but manual header conditions are not appearing.
    1.      BAPI_CUSTOMERRETURN_CREATE
    2.      BAPI_SALESORDER_CREATEFROMDAT2
    3.      SD_SALESDOCUMENT_CREATE
    If we create through transaction code u2018VA01u2019 with reference document, manual header conditions are appearing in pricing perfectly.
    SAP version is SAP ECC 6.0.
    Makarand

    Hi there,
    Is your return referenced from the F2 invoice or from the riginal order?
    If it is from F2 then in VTAF & if it is from OR then in VTAA --> at the item level --> pricing type select the option G copy pricing element unchanged & redetermine taxes or C copy pricing elements & redetermine others. Choose the required option. This is when the same pricing procedure is used in OR & RE order types.
    Regards,
    Sivanand

  • Profit center splitting - Intercompany FB60 - Sales/Use Tax Vendor invoices

    We are implementing Use Tax calculations for Vendor invoices and are stuck on an issue with profit center splitting when entering intercompany AP transactions (FB60).     The tax postings of the non-leading company are being split between the two company profit centers.
    When posting a vendor invoice with more than one company the tax items of the leading company are posting with the correct profit center but tax items if the non-leading company are splitting between the profit centers of the two companies.   The total amount of the tax is still correct, just part of it is posted to the wrong profit center. 
    We are assuming this is a document splitting issue but changes to document splitting configuration did not get the desired effect of not splitting the tax accounts.   
    Are there any suggestions of particular areas of document splitting that we should look into or other areas that might be causing this profit center splitting for the tax items?  Any ideas would be appreciated.
    Thanks,
    Jeff

    Hi Murlidhar,
    Here's a sample transaction with the problem results we are seeing.  Normal AP transactions are posting fine, it is only when Sales/use tax is added that we are finding a problem with the profit center splitting.
    Entering a two line FB60 transaction under company 0001.
    Line 1  - Company 0001, profit center 220020, $100
    Line 2 - Company  0002, profit center 250020, $100
    SAP sends this transaction to our external tax system which returns the tax amounts to accrue for each line item.
    Line 1 $7.30 for company 0001
    Line 2 $9.05 for company 0002
    When the transaction is then viewed in General Ledger View we see the tax amount of $7.30 posting to profit center 220020 but the tax amount for line 2 of $9.05 is evenly divided between profit centers 220020 and 250020. 
    The $9.05 should be posting only to profit center 250020 as the profit center assigned to line 2 of the transaction.
    Thanks,
    Jeff

  • A few days ago i bought the macbook pro in a Providence. In late Summer i will come back to my Country - Ukraine. I would like to know about a tax for my laptop. Can i return tax? Through the TAX FREE or return in airport? What should i do?

    A few days ago i bought the macbook pro in a Providence. In late Summer i will come back to my Country - Ukraine. I would like to know about a tax for my
    laptop. Can i return tax? Through the TAX FREE or return in airport? What should i do?

    You need to talk with the tax authorities in the countries to which you traveled and that of your home country. We are all end-users liek you and not Apple agents.

  • Excise duty adjustment in case of customer sales return

    Hi Frnds,
    While my customer return the finished goods I am making sales return order ,done the PGR & make the credit note.
    Now I want to adjust the excise duty through J1IH
    In j1ih which option I have to choose <other adjustemnet> or <add. excise>
    In Add. Excise tab.  the Gl account detremine are :
    C   0013113920     115.00               CENVAT clearing
    D   0024822000     5.00               CENVAT Input SECess
    D   0024820000     100.00               CENVAT Input BED
    D   0024821000     10.00               CENVAT Input ECess
    Whereas In case of Other adjustment tab GL account determine are
    C  0024822000     5.00               CENVAT Input SECess
    C  0024820000     100.00               CENVAT Input BED
    C  0024821000     10.00               CENVAT Input ECess
    D  0013113920     115.00               CENVAT clearing
    Please suggest me which option is correct.......Other adj or Add excise tab.
    In my opinion it should be Add. Excise where Clearing account is credited.
    Please Give me the solution & logic.
    Regards
    Sunil

    Please help me

  • 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

Maybe you are looking for