Discount on combination of two materials

Hi,
I have following requirement-your suggestions could help me in meeting the requirement.
Region A1 & A2
Material B1 , B2 & B3.--All the three materials belong to same material group. All materials have separate material codes
Requirement-1. When material b1 , B2 & b3 order in combination with minimum quantity 10 then discount has to be given for all the materials.
Requirement -2. For Region say A1-in SO-material combination B1 & B2 excluding b3 then discount has to be given for both the materials b1&b2.
Tried group combination in condition type-but not working as per requirement.
And also we have used field material group1,2,3,.5 in material master for different purpose.
Need you suggestions.
Thanks in advance
mskgnt

this is to inform you that,
1.
please use condition exclusion process in pricng for this requriment. 
if it is not satisfying your requriment then go for below solution.
2.
Region A1 & A2
Material B1 , B2 & B3.--All the three materials belong to same material group. All materials have separate material codes.
ok.
This can be solved with the help of ABAPER.
Requirement-1. When material B1 , B2 & b3 order in combination with minimum quantity 10 then discount has to be given for all the materials.
Requirement -2. For Region say A1-in SO-material combination B1 & B2 excluding b3 then discount has to be given for both the materials b1&b2.
let me take an example and explain on this:
this can be resolved by a pricing routine logic is:
create a condition K004 & assign this routine there.
In sales order if material b1, b2 & b3 with MOQ or MDQ is equal to 10.
compare this with VBAP-MATNR, RV45A-KWMENG, VBAP-POSNR 10,20,30
= MVKE-AUMNG, MVKE-LFMNG = 10
add if condition saying that if VBKD-REGIO,VBAK-AUART & VBAP-POSNR 10,20,30 = MVKE-AUMNG, MVKE-LFMNG = 10 then exclude discount for B3and give only to B1 & B2.
Then trigger this condition type discount for all these materials.
hope this helps to clear your requriment.
regards,
balajia

Similar Messages

  • Two materials ordered separately from vendor to be used as single material

    Hi All,
    Suppose there are two materials say A and B which are ordered separately from vendor and then placed in storage location as two diffrent stock materials.
    But while issuing the goods, these two materials A and B need to be combined as different material C and has to be issued against.
    Please let me know if there is any possibility of such scenario.
    Regards

    Hi,
    Two materials A and B which are ordered separately must be created with same  material type(say ROH) & a different material C must be created with a separate material type HALB.Now can keep /create BOM for  material C where you can mixing combination of  materials A and B.
    You can issue now  material C after mixing of materials A and B.( after receiving to warehouse).Just get help from PP consultant.
    Regards,
    Biju K

  • DIMP - Two materials in same Production Order

    Hello experts
    anyone knows if it is possible combine two materials in one production orders with DIMP component?
    The scenario is for print flexible packaging, in one flexo printing machine we can print 2 different product with similar structure and characteristics like width, weight, colors and so on.
    This FERTs consume the same raw materials (BOPP Film, same colors of ink). the last process is cut the roll for obtain two different flexible packaging.

    Dear Ismael,
    You will have to test it, but i believe it's possible.
    If the order BOM has co-product, then settlement will have 2 entries. You can change the ratio over there, to settle to one material. So, the costing will happen accoridnlgy. There's no change in logistic process.
    Another option is to change BOM prior to creating the order, if you know the details beforehand. But, correcting master data is not a right practise.
    Thanks
    Prem

  • HT1473 My girlfriend and I both have iTunes account with our own music libraries and we want to combine our two libraries into one icloude accounts so can both then access our one shared libary at anytime in the cloud.  How do we do this?

    My girlfriend and I both have iTunes account with our own music libraries and we want to combine our two libraries into one icloude accounts so can both then access our one shared libary at anytime in the cloud.  How do we do this?

    No it is not possible.  Content purchased from the iTunes Store is permanently tied to the account from which it was originally purchased, and Apple does not provide a way to change it.

  • I opened an itunes account then forgot my password. I opened a new account now I would like to combine my two accounts into one but I still can't remember my password and now I have a new email account. Help!

    I opened an itunes account then forgot my password. I opened a new account now I would like to combine my two accounts into one but I still can't remember my password and now I have a new email account. Help!

    You can't combine accounts but help here Apple ID FAQ's for resetting your Apple ID password.

  • HT201272 I have two iTunes account.  How do I combine the two??

    I have two iTunes account.  How do I combine the two??

    Did you recieve any response on your questions?  I have teh same one can we load two itunes accounts onto one device?  It seems apple should have some fix to address this...thanks for any insight you can provide.

  • HT3819 If my partner & I both have an iTunes account, can we home share both or somehow combine the two accounts?

    If my partner & I both have an iTunes account, can we home share both or somehow combine the two accounts?

    As of right now there is no way to combine Apple accounts.
    As for "sharing", you can go into the iTunes settings for each and turn on Home Sharing, this will make your music libraries available to each other, provided you are both using different computers.

  • Two materials in different pC

    Hi All,
    Document splitting on PC level is active.While doing MIRO for two materials having Different Profit Centers,sytem is giving error-"Balancing Field Profit center in line item 001 not filled".
    Should it not split vendor line into two having the 2 diff PCs,since we cannot enter PC in vendor Line Item.
    Please advise..
    regards,

    Hi,
    I am not sure about version 10 - i've jumped from 8.5 to 9 and them to 11 R2...
    However at one time i needed to have:
    Version 8.5 and version 9 and version 11 R2 all in the same PC and it works (at least for create and change reports -  for development i was using only v.11).
    Of course, if i open a report with double-click, it was opened by v11; so for v.8.5 and v.9 i open the editor first and then opened the report.
    My major care was to setup the products in order: V8.5 first, then SPs for this version, then 9, etc.
    Hope this helps!
    Carlos Crespo

  • For Each Combination of Two Cols Create a Record

    How do I PL/SQL creating a new record in table B for each combination of two columns in table A? Do I need to create a cursor?
    my_cursor IS
    SELECT col1, col2 FROM tableA
    and then with a FOR loop somehow write SELECT FROM INSERT INTO?
    Thanks,

    For unique combination you have to do more than just distinct:
    SQL> ed
    Wrote file afiedt.buf
      1  select distinct least(x.id1, y.id2) as num1, greatest(x.id1, y.id2) as num2
      2  from t x, t y
      3* order by 1
    SQL> /
          NUM1       NUM2
             1          2
             1          3
             1          4
             2          2
             2          3
             2          4
             3          3
             3          4
    8 rows selected.
    SQL>Which, as you can see strips out the 3,2 because we already have a 2,3
    We have to use the greatest and least functions here so that the 3,2 combination was turned around to become 2,3 thus causing a duplicate which was stipped out using the distinct. There are other techniques too, but it depends on your data and what you want to achieve.

  • Need help on combining these two program

    Hi all,
     I needed some help on combining these two program. But i not very sure how to do it.
    My program in working with TimeIn/TimeOut attendance taking. The snippet vi "insert data" is the where i start to TimeIn and insert into the microsoft access. And i wanted to insert it together with a camera catching the user's face. But i have no clues on how to combine them.
     Can u guys give me some ideas to help me ?
    Thanks in advance.
    Attachments:
    IMAQdx.png ‏55 KB
    insert data.png ‏68 KB

    Hi Himanshu,
    But if i put everything inside the IMAQdx loop ,it make my whole program more complicated. 
    This is how my program looks like below.
    I only want to display the image only when i "insert" all data into the database ( which i given at the perivous post).
    Is there other way?? And how do u make the IMAQdx loop stop without putting a stop button?? Because everytime i run the program,it will run continuously at the IMAQdx loop..
    Thank in Advance.
    Attachments:
    FYP.png ‏205 KB

  • How can I combine my two apple/Itunes accopunt?

    Ho can I combine my two apples/itunes account?

    If you mean iTunes Store accounts, you can't. If you mean iTunes libraries, you need to import the music from one to the other.
    (79742)

  • Two materials with the same EAN

    We use standard and promotional material code with the same EAN. The issue we should solve is that EDI recognises the material based on the EAN code. In the Order message I need material_1 during promotional period and material_2 when the promotion finished. Is there a flag somewhere in MM to block material for EDI orders? (Sales staff doesn't want to change the EAN code, so it will be the same for two materials.)

    Also note that this type of configurtion may not be supported.
    Just because a given configuration works in certain given conditions does not mean that it would be supported.
    If this setup is for a configuration that has any value, please also Contact Oracle Support to get their inputs on what you are trying to accomplish.

  • How can I combine these two DAQ tasks???

    I am using LabVIEW 11, Windows XP, cDAQ-9174 chassis, two NI-9205 modules.
    Please see my code for reference. I am very new so i will accept all suggestions.
    I am acquiring 12 volatage signals in a producer/consumer structure giving me a queue of 1-d array of waveform(dbl). Then I am acquiring 12 voltage signals in another loop giving me 2-d array of waveform(dbl).
    There is an issue creating the channels. How can I combine these two tasks?
    Thanks,
    ~Chris
    Attachments:
    WaveTest_6.2.vi ‏558 KB

    Hello chrisbe723,
    When you say that there is an issue creating the channels, are you getting a specific error message when running your code? Also are you referencing the same set of channels for the two DAQ task you are configuring?
    Paul-B
    Applications Engineer
    National Instruments

  • Creating two materials doc in mvt type 101

    Hii,
    In which stuation two materials documents are created in mvt type 101 (for PO)
    the material is valuated at Moving avarage price.

    Hi,
    For subcontracting PO's...

  • Two Materials in One

    Hi Sap Expert,
    I need to know if i can group two materials in one material. For example, A Material   are in KG, and B Material  are in Drum, we want one material C, that group the A and B in a C material that are in KG, and affect the inventary and cost, that is possible?, and how can i do this?.
    Thank'z,

    Hi,
    You want to group two materials.Is it assembly?
    If so create a BOM for material C & include line item material A & B with their respective UOM.
    Regards,
    Dharma

Maybe you are looking for

  • [solved] XFCE default mail client

    In preferred applications in the XFCE settings manager the two simple questions appeared: default web browser and default mail client.  I set these to firefox and thunderbird respectively, and XFCE indeed recognized that I meant Bon Echo and Mail/New

  • Goodwill in local currency

    Hi experts Can anybody give me the steps to get the goodwill in local currency? We have to customized this issue in the BCS system. Is there any guide to get it? Regards.

  • Workflow mailer issue

    Hi All, I am new apps DBA, Below query is giving - > 1 - Select NOTIFICATION_ID, MESSAGE_TYPE, MESSAGE_NAME, STATUS, MAIL_STATUS, FROM_USER, TO_USER from wf_notifications where MAIL_STATUS='FAILED'; STATUS (open and closed) and MAIL_STATUS faield. Pl

  • Why does my ipad say i cant make anymore apple ids or and i cloud account

    Why does my ipad say i cant make anymore applie ids or an i cloud account abd how do i get an account HELP please !!!!!

  • How can I change the language of my spellchecker from french to english?

    My spellchecker works in the french language. This makes it useless for checking english documents . How can I change the language in the spellcker to US english? If possible, please provide step-by-step keystrokes.