Exclude material from discount

Hi All,
I am maintaining one discount at header level in sales order i.e. 2% discount.
But i want to exclude this discount for few materials and for rest all other materials 2% discount should be appicable.
How can i do this?
Regards,
Ibrahim

Hi,
Instead of the HEADER DISCOUNT , use the ITEM DISCOUNT ( in V/06) with the Combination of Material ( as one of the keys)
If you want to use the HEADER DISCOUNTS, then you have to write a Logic  to restrict particular Material group, You cant do it individuall for each material
Please revert back if you need more details
regards,
santosh

Similar Messages

  • Excluding material from calculation

    Hi,
    I would like to exclude some material indexes from calculation. They shouldn't be removed from BOM, but their prices shouldn't be included in the calculated standard price of Finished Good.
    Is there a simple way of achieving this goal? I thought about marking the TAB "do not cost" in material Master data in Costing1 tab.
    Hope somebody can help me,
    Kind regards,
    K

    Hi Karol
    You are at the right node please go ahead.
    Do Not Cost
    Controls whether a cost estimate or a procurement alternative can be created for a material.
    Use
    If you select this indicator, you cannot create any of the following for this material:
    Material cost estimate (with or without quantity structure)
    Sales order cost estimate
    Procurement alternative
    The material is excluded from selection and BOM explosion, so that no cost component split will be created by the costing process. If the material is included in another cost estimate as a component to be valuated, the valuation price is determined through the valuation variant if no cost estimate with the same key exists for the material.
    Good Luck
    Hari

  • Client wants freight charges to exclude from discount base for payment

    Dear All,
    Client wants freight charges to exclude from discount base for payment to vendor.
    We have maintain the customization of "Discount base is net value" in Global Parameters for company code.
    But while payment to vendors, the system is adding the freight amount in the discount base, which should not be.
    Please advice, how we can solve this problem.
    Is there any customization needed for that ?
    Regards
    BIJUDAS

    Hi,
    The net caclulation is meant for calculation inclusive of exclusive of tax amount  and not freight amount. If you want to acheive this fro freight, the only way i see it is thrugh separate invoices. Alternatively you will have to go through the ABAP route in terms of user exits.

  • Excluding a specific material from integration model

    Hi,
    All materials corresponding to a particular MRP type are in an integration model and the model is active.
    Request you to inform the steps to exlude a specific material from this integration model even if it is having the same MRP type.
    With regards,
    Mrinal

    Mrinal,
    CFM1>For each model affected, call up the affected variant.  Go to the material field. Select Multiple selections ('right arrow'). Select the 'Exclude values' tab (third tab).  Enter the material or materials to exclude. Copy (F10).
    Save the variant.  Execute the program to generate the (newly modified) model.  Save the model.
    Go to CFM2.  Activate the newly generated model.
    Repeat for other affected models.
    If the material previously been contained in active models, then the newly excluded master and transactional data will still exist in SCM.  If you find it to be necessary to delete these data, then you need to go over to SCM and perform the necessary steps.  Start with /SAPAPO/CCR to delete transactional data, then go to WUF to delete master data.
    Regards,
    DB49

  • Can i exclude a product from discount.

    I have a catalog with about 20 products, all with a discount code. Can I exclude one product from the discount code?

    Hi,
    If you have applied the discount code to the catalog and want one of the products in that catalog to be excluded from discount, then you need to remove that product from the discounted catalog.
    Regards,
    Aish

  • Exclude buttons from ALV

    Hi All,
      I want to exclude pushbuttons from ALV. Can any body suggest me how to do this. I am using classes to display ALV.
    Regards,
    Venkat.

    in the pbo of your screen, before displaying your alv grid write in the following way:-
    data: g_alv_grid          type ref to cl_gui_alv_grid,
             g_exclude          type ui_func,
             g_t_tlbr_excl       type ui_functions.
    *PBO if used container or screen ,
    start of selection - if working with selection screen but before displaying alv.
    Exclude ICONS
        perform form_exculde_icons.
        call method g_alv_grid->set_table_for_first_display
          EXPORTING
            is_variant           = VARIANT
            is_layout            = LAYOUT
            is_print             =  PRINT
            it_toolbar_excluding = g_t_tlbr_excl
          CHANGING
            it_outtab            = ITAB
            it_fieldcatalog      = FIELDCATALOG[]
        if sy-subrc <> 0.
          write: 'Method call ''Set_table_for_first_display'' failed.'.
          exit.
        endif.
    form form_exculde_icons .
    Exclude alv sum button
      g_exclude = cl_gui_alv_grid=>mc_fc_sum.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv count button
      g_exclude = cl_gui_alv_grid=>mc_fc_count.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv average button
      g_exclude = cl_gui_alv_grid=>mc_fc_average.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv maximum button
      g_exclude = cl_gui_alv_grid=>mc_fc_maximum.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv manimum button
      g_exclude = cl_gui_alv_grid=>mc_fc_minimum.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv subtotal button
      g_exclude = cl_gui_alv_grid=>mc_fc_subtot.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv auf button
      g_exclude = cl_gui_alv_grid=>mc_fc_auf.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv locpaste button
      g_exclude = cl_gui_alv_grid=>mc_fc_loc_paste.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv new_row button
      g_exclude = cl_gui_alv_grid=>mc_fc_loc_paste_new_row.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv mb_view button
      g_exclude = cl_gui_alv_grid=>mc_mb_view.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv fc_view button
      g_exclude = cl_gui_alv_grid=>mc_fc_views.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv print_prev button
      g_exclude = cl_gui_alv_grid=>mc_fc_print_prev.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv viewgrid button
      g_exclude = cl_gui_alv_grid=>mc_fc_view_grid.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv view_excel button
      g_exclude = cl_gui_alv_grid=>mc_fc_view_excel.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv view_crystal button
      g_exclude = cl_gui_alv_grid=>mc_fc_view_crystal.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv view_lotus button
      g_exclude = cl_gui_alv_grid=>mc_fc_view_lotus.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv send button
      g_exclude = cl_gui_alv_grid=>mc_fc_send.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv call_abc button
      g_exclude = cl_gui_alv_grid=>mc_fc_call_abc.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv call_xint button
      g_exclude = cl_gui_alv_grid=>mc_fc_call_xint.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv fc_expcrdesig button
      g_exclude = cl_gui_alv_grid=>mc_fc_expcrdesig.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv fc_expcrtempl button
      g_exclude = cl_gui_alv_grid=>mc_fc_expcrtempl.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv mb_paste button
      g_exclude = cl_gui_alv_grid=>mc_mb_paste.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv load_variant button
      g_exclude = cl_gui_alv_grid=>mc_fc_load_variant.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv current_variant button
      g_exclude = cl_gui_alv_grid=>mc_fc_current_variant.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv maintain_variant button
      g_exclude = cl_gui_alv_grid=>mc_fc_maintain_variant.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv save_variant button
      g_exclude = cl_gui_alv_grid=>mc_fc_save_variant.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv select_all button
      g_exclude = cl_gui_alv_grid=>mc_fc_select_all.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv deselect_all button
      g_exclude = cl_gui_alv_grid=>mc_fc_deselect_all.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv graph button
      g_exclude = cl_gui_alv_grid=>mc_fc_graph.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv info button
      g_exclude = cl_gui_alv_grid=>mc_fc_info.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv f4 button
      g_exclude = cl_gui_alv_grid=>mc_fc_f4.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv call_report button
      g_exclude = cl_gui_alv_grid=>mc_fc_call_report.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv fc_check button
      g_exclude = cl_gui_alv_grid=>mc_fc_check.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv fc_refresh button
      g_exclude = cl_gui_alv_grid=>mc_fc_refresh.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv loc_cut button
      g_exclude = cl_gui_alv_grid=>mc_fc_loc_cut.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv loc_copy button
      g_exclude = cl_gui_alv_grid=>mc_fc_loc_copy.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv loc_undo button
      g_exclude = cl_gui_alv_grid=>mc_fc_loc_undo.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv append_row button
      g_exclude = cl_gui_alv_grid=>mc_fc_loc_append_row.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv insert_row button
      g_exclude = cl_gui_alv_grid=>mc_fc_loc_insert_row.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv delete_row button
      g_exclude = cl_gui_alv_grid=>mc_fc_loc_delete_row.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv copy_row button
      g_exclude = cl_gui_alv_grid=>mc_fc_loc_copy_row.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv reprep button
      g_exclude = cl_gui_alv_grid=>mc_fc_reprep.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv call_chain button
      g_exclude = cl_gui_alv_grid=>mc_fc_call_chain.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv call_more button
      g_exclude = cl_gui_alv_grid=>mc_fc_call_more.
      append g_exclude to g_t_tlbr_excl.
    Exclude alv call_master_data button
      g_exclude = cl_gui_alv_grid=>mc_fc_call_master_data.
      append g_exclude to g_t_tlbr_excl.
    endform.

  • Exclude column from interactive report when exporting data

    Hello!
    Is it possible to exclude column from exporting (using bi publisher) in interactive report, but having in report. So in report it is, but in export result it isnt :). I know, that I can just not to select this column in "Action" menu before exporting, but then to select it to view in report. But is it possible not to export this column, but having it in report result?
    I Just have a checkbox in report, and I dont need to see it in export result.
    APEX 4.1.
    Thanks !
    Edited by: go0ze on Sep 28, 2012 1:40 AM

    Hi,
    Set condition type PL/SQL Expression to column and enter to Expression 1
    NVL(:REQUEST,'EMPTY') NOT IN('CSV', 'XLS', 'PDF', 'RTF', 'XML', 'HTMLD')Regards,
    Jari
    My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • How to add a privacy page and exclude it from the main menu, but include in links at the base

    adding a privacy statement page and excluding it from the main menu, but including in links at the base of site

    Right click on the page in Plan view and choose to exclude from menus. This will take it off your main nav.
    For your bottom nav, change the menu to manual and add the privacy page manually.

  • WM-PP : Backflush a material from different bins in the same storage Type

    Hi Gurus,
    We have a business scenarion where we do manual staging for production , the staging area has different bins within the same storage type for the same material, I am wondering if there is a way to backflush the material from different storage bins upon prod. order confirmation (using a control cycle?)
    Thanks
    Kris T

    Look like it's not possible using the SAP standard.

  • SYSFAIL Error in SMQ2 - Transfer of material from R/3 to CRM

    Hi,
    We are using standard BDOC to transfer material from R/3 to CRM. BDOC Type is PRODUCT_MAT, Queue name is R3AD_MATERIA<Material No>.
    There are some queues which are struck in SMQ2. There are no struck queues in R/3. The struck queue has the status SYSFAIL and when I double click, it shows Message - Error in Mapping (Details: transaction SMW01)
    I checked transaction - SMW01. The queue name which is in SYSFAIL status is not coming up in SMW01.
    I do not understand whereelse I can see the detailed error message.
    This error does not occur for all articles.
    As I don't have sufficient knowledge in CRM and BDOCs, any pointers regarding the issue will be very much helpful.
    Thanks and Regards,
    Lakshmi

    Hi Lakshmi,
    Please follow as below:
    SMWP-Middleware Monitoring Cockpit- This transaction gathers a wide set of information about the status of the Middleware & Downloads in both the CRM system, the R/3. All statuses should normally be green but there may be some circumstances which stop this occurring. Expand the section Generation Information which refers to the generation of BDoc Types. Where ever you see error you can right click and Select Analysis Tool then right click and check the error.The log shows the error.
    SMQ2- Select a Queue and select Display. Queues connected to R/3 start with a queue name of R3A/D.
    Double click on the Status field i.e SYSFAIL. Reason will be shown.In your case it is u201CError in Mapping (Details: transaction SMW01)u201D. Then Continue and select a queue and select Display.You can see the Individual BDocs are beoing displayed.
    SMW01- give Bdoc Type as " Product_mat". If it is not displaying then I request you to check if all the objects are generated properly.This may also happen if the objects are not properly generated.Use tx-Genstatus. That will give you a list of error objects to be generated.
    Regards...
    Arup

  • Costing run with values for material from info record.

    Hi All
    there is requirement with my client, that when i run my costing run the values of the components in BOM should be from the latest purchase order.
    For this i am maintined valuation criteria as price from info record and sub strategy as gross price from PO.
    When i am create a PO the info record is created automatically in background. So when i run costing run the value is picked correctly.
    Now when i create a PO with same material from diff vendor the info record is generated, but on costing run it picks the value from the info record of earlier vendor. For this i go and check the conditions tab in info record, ensure its balnk and save it. Again generate new PO and then run a costing run. This time the system reads the latest info record.
    My problem is that i want to ensure that during the costing run, system should read the latest info record w/o manual intervention. System behaviour is not consistent when there is multiple vendor and same material info records. Sometimes it pick up the value and sometimes it refers the old info record.
    Can any one help me out in resolving this issue. Its critical.
    Regards
    Rakesh

    Hi!
    Generally first info records will be created with vendor, then PO will be created, based on info records price, price will be updated in PO.
    If you have more than one vendor for same material, you have to create info records for each vendor. then you need to maintain source list, where you can fix the vendor. If there is no fix vendor, then you can do schedule agreement with vendors, where you have to give proportionate percentages again each vendor.
    Now for costing run :
    1. if you have only one info record, the price will take from that info record.
    2. if you have more than one info record, you need to mantain source list, where you can tick the fixed vendor, then system will take price from that vendor info record.
    3. if there is no fixed vendor and you have maintained scehduel agreement with weightage to vendor, then higher percentage vendor info record price will be picked up.
    4. if you have more info reocrds, not maintianed source list or schedule agreement, price will be picked up from first info record ( based on info record creation date).
    5. if you have a schedule agreement, but you have given equal weightage for example 50% and 50%, then also system will pick up from first info record.
    i think it is clear now.
    regs,
    ramesh b

  • Creation of Material from SAP VIEW using CDESK.

    Hi  Experts,
    I have one question related to creation of Material from SAP View.
    CAD file created say SM1000.prt
    Create DIR in CAD View say SM1000
    Scenario 1 :   Create Material in Background from CAD VIEW or SAP VIEW from cad desktop, It creates material SM1000
                               in background.
    Scenario 2 : Open CDESK ( Transaction)
                            Click on OPEN,
                            Selecting the DIR created SM1000
                            Create the material in background in SAP View, it gives message " enter material number"
    Why am not able to create the material from SAP view using CAD Desktop. If any modifications needs to be done in CDESK CUS to solve this please let me know.
    Thanks,
    Sudharshan

    Hi Sudharshan,
    maybe the reason for this is that your CAD applications provides a special material number and the customizing in CDESK is defined to use this number. In this case the number or value can by provided from the CAD application only from the CAD View.
    In the SAP view the material gets created like in MM01 for example and so mabye you have to enter a material number.
    Best regards,
    Christoph

  • Sending material from one subcontracting vendor to another vendor

    Hi Experts
    we have a scenario we have more than one subcontracting vendors.so the unused raw material should be send to one vendor to another.so how can we configure it.please give me feedback.
    Thanks in advance...

    Hi Madhu ,
    What do u mean sending unused material from one vendor to another ?
    In subcontracting u can send material to only one vendor at a time.
    Regards
    Ramesh Ch

  • Transfer material from one storage location to another storage location

    Is there any bapi  to transfer material from one storage location to another storage location

    Hi,
    You need to use the below BAPI
    BAPI_GOODSMVT_CREATE
    Regards
    Sudheer

  • Procurement Of Imported Material From Trader

    hi,
        i am purchasing one imported material from a trader,in this case excise treatment is different
        *MATERIAL        QUANTITY   RATE/UNIT   RATE OF  DUTY/UNIT    EX-DUTY&CESS*       AMOUNT
                                                                         Duty%
         KP                        238                280           8%  bed             16.442          3913.19                   66640
                                                                          2%  ecs                                    79.25
                                                                           1% hecs                                   39.50
                                                                           4 % adc                 8.9             2130.57
                                                                                    total              6162.51(bedecshecs)
    now in this scenario bed and adc r charged on qty basis(duty/unit),now at the time of pur.order vendor gives u  the rate of mat including excise and tax.,i am using taxinn procedure ,system calculate excise on po value that is on 66640 due to which at the time of invoice verification vendor accounts get credit by
    (po valueexcise) also i.e (666406162.57) but  as vendor gives mi the rate of mat including excise so its account should not be hit more than  66640.  66640 amount include excise taxbase value.
       at the time of po vendor cannot give mi base value price.

    thyks

Maybe you are looking for

  • Changing images with c#

    Hi, I am making a slotmachine. I have everything but only need an animation for changing the images. This is what i got(only the code for the animation). I can change 2 images but don't know how to do it with multiple images like 5. using System; usi

  • Drag & drop not functioning

    I'm having a strange problem with drag and drop in Finder. Often when I try to drag a file into the trash or into another folder, the file will follow the cursor but when I release on the trackpad the file does not "drop." It simply remains attached

  • Dead Ethernet port ATV, will Apple USB connector work?

    My ethernet port on my ATV died. I have made sure the cable and switch are okay (by connecting to another device). I have done a factory restore since this port worked until a couple of weeks ago. Will the Apple USB ethernet adapter and plug this int

  • Jtffmctl.txt have errors

    Dear Friends we have following errors in jtffmctl.txt file, please help to resolve these errors, and also what is the impact of these errors... ======= Starting Fulfillment Server for CLN on port 9320 ... jtffmctl.sh: exiting with status 0 INITIALIZI

  • TS1424 I did not get a confirmation e-mail saying that they were reviewing my new podcast, but I can't resubmit the feed... what's going on?

    I haven't gotten any information from iTunes about whether or not they're reviewing my podcast but I can't resubmit the feed...