Regarding  material  taxes

hi,
          how can calculate the material taxes
           in which tables we can  find the s material taxes .
   and  how can we retrieve the taxes based on  material.
plz givee the tables.
regard s
spandana

hi ,
U need to consult a SD consultant for configuring the tax and all so after configuring, the system will pick based on the pricing condition available and within the order level u can find the value from that u can reach out to a solution.
i.e passing the condition type to KONV and pick all  the details regarding ur order and pass the condition rec no to KONP and then get the amt.
Try this hope this will help u
Regards,
Venkat

Similar Messages

  • Updating the Customer & Material Tax Classification via LSMW only

    We need to update the Customer and Material Tax Classification via LSMW only, in such a way that on the updation of the Tax classifications the Customer Master and the Material Master should be updated automatically.
    Please let me know if anyone has done the same also it would be really helpful if you can provide me the details.
    Regards,
    Arindam

    Hi,
    It's not clear your question to me.
    Do you want to update the Tax classification in the customer master & Material master?
    I did same, but with 2 different LSMW"s as there is not link between customer master & Material master.
    To update customer tax classification -
    In that you have to feed relevant customer numbers with sales areas & relevant tax classification for one LSMW.
    To update Material tax classification -
    In that you have to feed relevant material numbers with sales areas & relevant tax classification for different LSMW.
    Best regards,
    Anupa

  • IDOC Process And regarding material

    Hi,
        I want learn about IDOC In ABAP . So please send me the process of IDOC and the regarding material.

    Check out the following links:
    http://www.thespot4sap.com/Articles/SAP_ALE_IDOCS.asp
    http://www.erpgenie.com/sapedi/idoc_abap.htm#Updating%20IDoc%20data%20in%20segments
    http://help.sap.com/saphelp_47x200/helpdata/en/78/21750b51ce11d189570000e829fbbd/frameset.htm
    Please do assign points if useful
    Regards
    Aravind

  • Add material tax classification to company code

    Hi gurus,
    hope you can help me with this one.
    i need to add/extend the material tax classification to a company code... how would i do that.
    appreciate your help.
    thanks in advance

    Hello Brett,
    I am facing the same issue. Can I know how to change the country defaulted to the country where I can to create?
    Thank You.

  • ALE Process And regarding material

    Hi,
        I want learn about ALE's In ABAP . So pleasesend me the process of ALE and the regarding material.

    Hello Nagaraju,
    The following links will give you complete idea about ALE,
    <a href="http://help.sap.com/saphelp_46c/helpdata/en/c9/d97749ae0311d1a5120060087832f8/frameset.htm">ALE in Business Process</a>
    <a href="http://help.sap.com/saphelp_46c/helpdata/en/0b/2a60bb507d11d18ee90000e8366fc2/frameset.htm">What is ALE and how it works?</a>
    Hope this helps.
    Regards
    Arif Mansuri

  • Fetch Material Tax data

    How to fetch all the country, tax category of a material tax data in sales org view using select query for filling the classification in LSMW program. Kindly provide me the tables and select queries.

    Hi Senthil,
    Select single * from MLAN where matnr = material and
                                    aland = country.
    If you need everything, remove the single and country from selection. Is this what you are asking for?
    Raj
    Reward points if helpful.

  • Vendor , material Tax Code

    Hi ,
    I want to default tax code for vendor and material combination . Can anyone please tell me what is the T.Ccode for the same.
    Regards
    Nandini

    dear sir
    u can make the default the tax  code for vendor and material in info record (ME11).
    in info record  pur organization data 1 u can give the tax code.
    regards
    jrp.

  • Regarding : Material document data and PO data do not match (Plant)

    Hi Gurus,
    Please go through this BAPI program.
    While uploading it is giving an error ' Material document data and PO data do not match (Plant) '.
    Please help regarding this issue.For all Other moment types it is working fine except this 351 moment type.
    dATA: i_excel TYPE truxs_t_text_data. "work table for excel upload
    DATA: BEGIN OF it_itab OCCURS 100,
          docdate(10),
          postdate(10),
          mvt_type(3), "Movement Type
          plant(4), "Plant
          lgort(4),
          pur_doc(10), "Purchase Document No
          po_item(3), "Purchase Document Item No
          material(18), "Material Number
         delnote(16),
          erfmg(13),
          uom(3),
         lfmng(13), "Quantity
          batch(10) TYPE c,
          vfdat TYPE vfdat,
          END OF it_itab.
    DATA: it_goodsmvt_head TYPE TABLE OF bapi2017_gm_head_01      INITIAL SIZE 100,
          it_goodsmvt_code TYPE TABLE OF bapi2017_gm_code         INITIAL SIZE 100,
          it_goodsmvt_item TYPE TABLE OF bapi2017_gm_item_create  INITIAL SIZE 100.
    DATA: wa_goodsmvt_head LIKE LINE OF it_goodsmvt_head,
          wa_goodsmvt_code LIKE LINE OF it_goodsmvt_code,
          wa_goodsmvt_item LIKE LINE OF it_goodsmvt_item.
    DATA: w_mat_doc  TYPE bapi2017_gm_head_ret-mat_doc,
          w_year     TYPE bapi2017_gm_head_ret-doc_year.
    DATA: BEGIN OF it_errmsg_goodsmvt OCCURS 10.
            INCLUDE STRUCTURE bapiret2.
    DATA: END OF it_errmsg_goodsmvt.
    DATA : obj_type LIKE bapiache09-obj_type,
           obj_key  LIKE bapiache09-obj_key,
           obj_sys  LIKE bapiache09-obj_sys.
    DATA: v_date1 TYPE sy-datum.
    DATA: v_date2 TYPE sy-datum.
    DATA: w_lines TYPE i.
    DATA: errflag.
    SELECTION-SCREEN BEGIN OF BLOCK bk1 WITH FRAME TITLE text-100.
    PARAMETERS: p_file TYPE  rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK bk1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          field_name = 'P_FILE'
        IMPORTING
          file_name  = p_file.
    Start-of-selection processing
    START-OF-SELECTION.
      CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
          i_line_header        = 'X'
          i_tab_raw_data       = i_excel
          i_filename           = p_file
        TABLES
          i_tab_converted_data = it_itab[]
        EXCEPTIONS
          conversion_failed    = 1
          OTHERS               = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      LOOP AT it_itab.
        REFRESH it_goodsmvt_head.
        REFRESH it_goodsmvt_item.
        CONCATENATE it_itab-docdate6(4) it_itab-docdate3(2) it_itab-docdate+0(2) INTO v_date1.
        CONCATENATE it_itab-postdate6(4) it_itab-postdate3(2) it_itab-postdate+0(2) INTO v_date2.
        wa_goodsmvt_head-pstng_date = v_date2.
        wa_goodsmvt_head-doc_date   = v_date1.
       wa_goodsmvt_head-ref_doc_no = it_itab-delnote.
    wa_goodsmvt_head-pr_uname   = sy-uname.
        APPEND wa_goodsmvt_head TO it_goodsmvt_head.
    Maintain it_goodsmvt_code
        wa_goodsmvt_code-gm_code    = '04'.
    Maintain it_goodsmvt_item
    *LOOP AT it_itab.
    IF wa_goodsmvt_item-po_number IS INITIAL.
        wa_goodsmvt_item-po_number    = it_itab-pur_doc.
        wa_goodsmvt_item-move_type    = it_itab-mvt_type.
        wa_goodsmvt_item-MOVE_PLANT      = it_itab-plant.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            input  = it_itab-material
          IMPORTING
            output = it_itab-material.
        wa_goodsmvt_item-material     = it_itab-material.
        wa_goodsmvt_item-stge_loc     = it_itab-lgort.
        wa_goodsmvt_item-po_item      = it_itab-po_item.
        wa_goodsmvt_item-entry_qnt    = it_itab-erfmg.
        wa_goodsmvt_item-ENTRY_UOM_ISO    = it_itab-uom.
       wa_goodsmvt_item-po_pr_qnt    = it_itab-lfmng.
        wa_goodsmvt_item-batch        = it_itab-batch.
        wa_goodsmvt_item-expirydate   = it_itab-vfdat.
       wa_goodsmvt_item-NO_MORE_GR   = 'X'.
        wa_goodsmvt_item-mvt_ind      = 'B'.
        APPEND wa_goodsmvt_item TO it_goodsmvt_item.
        CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
          EXPORTING
            goodsmvt_header  = wa_goodsmvt_head
            goodsmvt_code    = wa_goodsmvt_code
          IMPORTING
            materialdocument = w_mat_doc
          TABLES
            goodsmvt_item    = it_goodsmvt_item
            return           = it_errmsg_goodsmvt.
    Process of commit work
        IF it_goodsmvt_head[] IS NOT INITIAL.
          DESCRIBE TABLE it_goodsmvt_head LINES w_lines.
        ENDIF.
        IF it_goodsmvt_item[] IS NOT INITIAL.
          DESCRIBE TABLE it_goodsmvt_item LINES w_lines.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
        IMPORTING
        RETURN        =
          CLEAR errflag.
          READ TABLE it_errmsg_goodsmvt INDEX 1.
          IF it_errmsg_goodsmvt-type EQ 'E'.
            WRITE:/'Error in function', it_errmsg_goodsmvt-message.
            errflag = 'X'.
          ELSE.
            WRITE:/ it_errmsg_goodsmvt-message.
          ENDIF.
          IF errflag IS INITIAL.
            COMMIT WORK AND WAIT.
            IF sy-subrc NE 0.
              WRITE:/ 'Error in updating'.
              EXIT.
            ELSE.
              WRITE:/ 'Material Document created successfully and the Document Number for the Material',
                      wa_goodsmvt_item-material,'is:', w_mat_doc, w_year.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.

    Hey,
    Just wanted to post that in my case this was the error of MVT_IND field in item table. When I made it from 'B' to blank then it worked.
    Mine is solved....
    Thanks

  • Regarding Material Determination and free goods determination

    Hi Gurus,
                 I understand the Material Determination to be substitution of a new material for the old one for any possible reasons such as sales Campaign,non availability etc.
    Could anyone one explain the concept whether material determination and Free good determination can co-exist in a sales order ?
    How to substitute by material determination procedure for a free good in a sales order?
    Regards,
    S.Ravi kumar

    Hi.,
              We can use material determination and free goods,as per my knowledge material determination takes first and to the swapped material free goods determiination takes place
    Award points if helpful
    Narayana

  • Regarding material wise purchase order creation with reference to pr

    Dear sir
    I have a scenario depending on the  material wise pos creation
    I have two type of material
    1) raw material
    2) consumables
    When user will create purchase order for raw material, system should ask purchase requisition. ( i.e with out purchase requisition for raw material , system should not allow to create the purchase order)
    Where as for all consumables materials system should allow to create the purchase order
    Without purchase requisition also, for user.
    Regards
    Jrp.

    You have to create two different document type for purchase order.
    1) Raw Material Purchase
    2) Consumables Purchase
    You can create two different document type for purchase order with below mention path: -
    SPRO >> Materials Management >> Purchasing >> Purchase Order >> Define Document Types.
    After define two different document type, You can change field status for two different document type with below mention path.
    SPRO >> Materials Management >> Purchasing >> Purchase Order >> Define Screen Layout at Document Level.
    Select document type and change field status of purchase requisition.
    Regards,
    Mahesh Wagh

  • Regarding: material report

    Hi,
    I am making a report in ehihc i have to display the minimum,maximum,reorder point and stock level of a material .
    plzz tell me the tables where i can have these data as i want to display the cureent status of stock level .
    reagrds,
    ric.s
    Edited by: ric .s on May 5, 2008 7:30 AM

    hiii,
    hopefully you are creating report regarding the MM module.
    try for the tables -
    MARA     Inventory Master
    MARC     Plant Data
    MARD     Current Inventory
    MAKT     Descriptions
    MBEW     Material Valuation
    T179     Product Hierarchy
    MVKE     Sales data (materials)
    MKPF     Material document
    if helpful ,,,assing points...
    thanks....

  • Material Tax Classification

    Hi Gurus,
    Need a little suggestion for a doubt -
    I accidently changed Material Masters data of some items, after running a faulty LSMW
    When I look at the change document for some of those articles it says -
    Change          Tax classification article          1     Ireland
    So I believe it has changed the tax classification for this article ONLY for Ireland
    when I reversed the change .. it says ..
    Change          Tax classification article     1 Full tax     0 No tax     Ireland              Output Tax
    I have a few doubts .. first , is this changed only for a single country or for all of them .. & if I have reversed the changes  ..
    Plz suggest what shall I do to make it as it was ...
    << Moderator message - Please do not promise points >>
    .. many thanks for your help
    Edited by: Rob Burbank on Feb 7, 2011 3:54 PM

    The tax classification section is dynamically defaulted based on the plants that are linked to your sales area.
    for each plant country you will see an entry.
    if such an assignment is made after go-live, then with the next change of material master you are asked to complete the classification.
    This cannot be undone. you can just change it to another value if the value you entered was wrong.

  • Buget Exceed problem regarding material transfer in project system

    Hello Sir,
    I have a problem regarding budget in project system.
    when i do budget and release . and do any transaction
    with that budgeted wbs element in particular project.
    i get budget excced errors usally.
    however, budget remains more than exceeded buget.
    Let us touch with a example in brief, we have a buget for a L&T project 10 Lakh.
    Buget                                         Release                                          actual cost                                            total cost commitment
    10Lakh                                       10Lakh                                             8lakh                                                         1Lakh
    when i transfer a material from another project to this L&T project material worth is 50thousands.
    i get a errors for L&T project budget exceed with 40thousands.
    however in project budget remains 1Lakh remaining .
    why system shows errors for this material transfer worth rs 50thousands
    Please help me regarding this problem where is 1lakh budget
    with regards
    sanjay agrawal

    Hello sir,
    there is no any problem regarding budget supplement but if project sometimes
    remains 20lakh buget price remaining out of 50lakh.
    and need 1 lakh material price for transfer in project
    then why need to do budget supplement for 1 lakh if project
    remains 20lakh price rest.
    please guide me for above problems
    with regards
    sanjay agrawal

  • Regarding Material creation

    Hi friends........
    I have requirement to create Material through workflow.......
    menas we need to pass different views to different person..in his business workplace....
    Thanks in Advance.......
    Regards,
    Charan

    Hi twinkle..........
    I did same requiment object.......i will brief u....
    1) first create Delagate business object of BUS1001006 with method MATERIAL_MAINTAIN_DAILOGUE function........Using this function module u should create Method for that object.........
    Create parameters As T.CODe and status view.....
    2)Create Ztable with fields which are need to mandetary for diaplaying particular screen........
    3)now u configure u r workflow with this delagate business object and method which was create by your self.......
    4)While binding you should pass T.code and status value which view you need.......
    IF u doubts , please feel free to send mail........
    If useful plz Rewards.......
    Thanks In advance,
    Regards,
    Bhaksar Rao Javvaji

  • Regarding service tax invoice creation in SAP SD

    Hi,
    Currently we are using ECC6 EHP4 where my client require separate service tax invoice generation as like excise invoice generation in J1iin. is it possible in ECC6 ehp4? client has excise registration
    if possible what are the steps involved in it?

    Hi,
    The reason for asking a seperate invoice for service tax may be because the client wants to utilize the service tax.
    Other wise there is no need to create separate invoice for service tax. Invoice can be created from VF01 with service tax condition type included in the pricing procedure.
    please check these links
    http://wiki.sdn.sap.com/wiki/display/SI/ServiceTaxCreditandUtilization.
    Service tax utilization through J2IUN
    Hope this helps.
    Regards,
    Sharan

Maybe you are looking for

  • Why are url and email addresses not fully viewable in a PDF when generated from a Word file?

    I have a question? A colleague in our Copenhagen office wanted to generate a pdf from a Word file.  She is working on a Windows 2007 operating system and is running Acrobat Pro 9.  When she generated the PDF only part of a url and an email address wa

  • Screen Saver Photo Slide Show...

    ...Hello... This used to work but for some reason it doesn't any more. Whenever I go to the screen saver preferences and choose a folder full of pictures to use as a photo slide show screen saver, it says 'folder contains no pictures'. However, is DO

  • Oracle application adapters insallation issue..

    Hi i am installing oracle adapters on linux version:Linux 2.6.9-5.ELsmp #1 SMP Wed Jan 5 19:30:39 EST 2005 i686 i686 i386 GNU/Linux. But while i execute the runinstaller it gives the following error: Checking installer requirements... Checking operat

  • Add user to ECR Approver

    Dear expert and colleagues I have a simple question for ECR management : I create new ECR via Tcode cc31 and want to  select approver but I can't find my user name in the list.How can I add my user account to the list of approver?whats the Tcode and

  • Simple Animation Sample Form

    Hi, I just want to share the code. Here's a simple animation, if someone is interested, he/she can download the form and one can modify it according to its needs. I made it in Forms 6i. Cheers http://www.orafaq.com/forum/t/49957/67693/