How to map this scenerio..... please help

Hi Experts,
Please tell me how to map this scenerio.
We want to produce 1000pc of plastic bottles. After production in this 1000 pc, assume that 100 pc of plastic bottles are having scraches on there surfaces but these bottles are not considered as scrap and we want to call this as B Grade materials. Similarly another 100 pc are also found same type of problem and we want to call this as C Grade materials. And remaining 800 pc , We want to call this as A Grade materials.
But all 1000 pc we want to sell, only the thing is with different price for A,B and C grade materials
Material is same i.e., Plastic Bottle (FERT) but depending on grades My client want to differentiate it.
Please Experts Clear me and help me how to map this in pp.
Thanks and Regards,
sap pp

Hi
You Maintain Split Valuation No need to maintain Diffrent Material code , U maintain Diffrent Valuation Type With Diffrence price , and Maintain Diffrent Batches with batch number as Grade, assign the valuation type to batch , at the time of confirmation based on the grade you selct the batch number and confirm , it will be saved with diffrent grade with diffrent valuation.
     What is Split Valuation?
Split Valuation means managing a material as several partial stocks. Each partial stock is  valuated separately.
     Why do you require Split Valuation?
Split Valuation is required for certain materials in order to valuate them separately.
Following can be the reasons for opting for split valuation:-
     1) Different origin of the material
     2) Different grades of the material
     3) Different statutes of the material
     4) Differentiation between in -house production and external procurement
     5) Differentiation between deliveries
IMG -> Materials Managementà Valuation and Account Assignment-> Split Valuation-> Activate Split Valuation
IMG à Materials Managementà Valuation and Account Assignmentà Split
Valuationà Activate Split Valuation à Configure Split Valuation
IMG à Materials Managementà Valuation and Account Assignmentà Split
Valuationà Activate Split Valuation à Configure Split Valuation
2.2 Create Valuation type
IMG à Materials Managementà Valuation and Account Assignmentà Split Valuationà Activate Split Valuation à Configure Split Valuation
2.Allocate Valuation type to Valuation categories
     IMG ->Materials Management-> Valuation and Account Assignment-> Split      Valuation-> Activate Split Valuation -> Configure Split Valuation
2.4 Allocate Valuation categories to Valuation areas
IMG à Materials Managementà Valuation and Account Assignmentà Split  Valuationà Activate Split Valuation à Configure Split Valuation
2.5 Default Valuation type per plant
IMG à Materials Managementà Valuation and Account Assignmentà Split Valuationà Activate Split Valuation à Configure Split Valuation
Create Manul batch number tcode- MSC1N Eg : A - Grade , B - Grade like that ,assign the Valution type to batch IN MSC1N Or MSC2N,
I hope this will workout.
Madhu

Similar Messages

  • I can't forcequit firefox and shutdown my computer, nor can I open up any other programs or applications. Does anyone know how to fix this? please help this poor soul.

    I can't forcequit firefox and shutdown my computer, nor can I open up any other programs or applications. Does anyone know how to fix this? please help this poor soul.

    You can force quit applications
    >Force quit
    if that does not work you can force quit a computer shut down by hold the power button for an extended period.

  • After upgrading my iPhone 5 to iOS 7 iTunes will not stay open once the app launches...does anyone know how to fix this? Please Help :)

    After upgrading my iPhone 5 to iOS 7 iTunes will not stay open once the app launches...does anyone know how to fix this? Please Help :)

    I have exactly the same problem. I too have tried everything that's been suggested, but still not working. Don't really what to do next? I have an iPhone 4S.

  • Can Any one tell me. System considering the Sales District also in Delivery Split which is not in standard. How to resolve this. Please help me

       Hi
    Can Any one tell me. System considering the Sales District also in Delivery Split which is not in standard. How to resolve this. Please help me

    Dear Srikanth,
    I am not sure, if my answer will satisfy you, but anyway I will try:
    Field Sales District is technically called BZIRK. In delivery structure is this field located in header (table LIKP), what cause split, if origin document (Sales Order) has different Sales District in some positions. This is standard program behavior. Basically it shouldn't happen, as value is taken from customer master (Sold-to Party) and copied to header and items of sales document. But user can manually changer for particular items.
    Well, to solve situation you have few ways:
    1. Do not allow users to change value on items - can be managed by organizational decision or by authorization concept.
    2. If there is a reason to have different Sales District in items, then it can be managed in in routines for copy control between sales and delivery documents (delete value of BZIRK for all items for instance). But then will be this information lost for further usage. It seems to me to invoice is value copied directly from sales order (field VBRP-BZIRK_AUFT) then it mustn't be a critical for analyses.
    3. Your situation also can happen if you wants to collect more sales documents to one delivery. In this case can be that Sales District is different for same customer in different sales order (even seems to be little bit strange). Then solution from point 2 can help as well, I believe.
    Best Regards
    Arnost

  • I'm not sure how to explain this but PLEASE HELP! ...

    okay so I'm not quite sure if anyone is going to understand what I'm talking about...
    But for some reason when someone adds me to skype (sends me a request) it says "Hi, White Asian!... so and so wants to add you.. blahblah etc." It says something other than my current user name, or my current display name, or my first and last name. I have know idea why it says this. I've had skype for a long time now and several years ago I believe that I changed my display name to "White Asian" as a joke. It hasn't been that for a long time now and I have no idea why it shows up like that when someone sends me a request on skype. I've tried changing every possible thing to do with a name in the profile/user settings to no avail. THe only time it shows up (that I'm aware of) is when someone adds me.
    So if you have any idea how I can fix this or why it's happening please let me know immediately!
    Its driving me mad because I don't know how to fix this!
    Thanks!
    Attachments:
    Untitled.png ‏11 KB

    Try this website. Yes its sprint but it might help you. http://support.sprint.com/support/article/Troubleshoot_issues_related_to_your_Sa msung_Galaxy_S_II_not_turning_on_completely/WTroubleshootingGuide_542_GKB51165-T rend?INTNAV=SU:DP:OV:TSIS:SamsungGalaxySIi-AsYouGo:TroubleshootIssuesRelatedToYo urSamsungG

  • How to implement this? please help

    In my java class, I have a string array called strarray which hold serveral elements, some of the elements have the same value , for example, the first element is "swimming", the forth element is also swimming. I use a for loop to get each element and give it to arrayHolder which is also a array with the same size as strarray. Now, what I want is: I defined a Vector called element I want this vector to filter out the element from arrayHolder, get the name of non-duplicated name from the arrayHolder, the result should be inside the element vector (swimming,walking,running,dancing), no duplicated name. My code is like follows:
    import java.util.*;
    import java.io.*;
    public class arrayTest{
    public static void main(String arg[]){
    String[] strarray={"swimming","running","walking","swimming","dancing","running"};
    String[] arrayHolder=new String[strarray.size];
    Vector element=new Vector();
    for(int i=0;i<strarray.length();i++){
    arrayHolder[  i  ]=strarray[  i  ];
    /* What should I do next to get the non-duplicated element from arrayHolder and
    * add them into the element vector????
    I did not finnish it, since I am a little bit confused, how to implement? Need some help. thanks.
    Message was edited by:
    Mellon

    Not sure if I see the use of strArray & arrayHolder (I've not looked at your code - you might use code tags next time (check the "code" button above the message textarea), but may I suggest using a Map of some sort instead of a Vector? It will prevent duplicates for you.
    Good Luck
    lee

  • I bought a 2nd gen ipod touch without software over the internet, i cannot use any apps as i need the latest version of iOS and i don't know how to get this. Please help.

    please help

    decy95 wrote:
    When I clicked 'check for update' it just says that 2.2.1 is the current version
    It will - until you purchase iOS 3.
    Follow the link that stedman provided, and on that page, instead of choosing the link to iOS4, choose Purchase the iOS 3.1 Software Update directly from the iTunes Store. When you choose it, iTunes will open to the store and page for buying (purchasing) the update. It doesn't cost much (a few dollars although I cannot recall precisely) and it is the only way to update from you current iOS version. Once you do that, a further update to iOS 4.2.1 is free. That particular update may occur straight away, I don't know.
    By the way, iOS 4.2.1 is as high as the 2nd generation Touch can go, but don't let that put you off. I have one and although I cannot install the BBC iPlayer (because it requires iOS 5) there are many Apps that work perfectly well with iOS 4.2.1.
    decy95:
    I've just read the another discussion (to which you contributed), in which Illaass suggests that you may have a 1st generation Touch. If that is so, then your iPod will only be able to update to iOS 3.1.3. This will still need to be purchased, but be aware that many Apps require iOS 4 or higher, so your options would be more limited. So follow the link Illaass provided to confirm which model you have.
    Message was edited by: the fiend

  • TS3367 I'm having trouble making Facetime calls with my iphone 4s.  I can receive them; however, I can not make them.  Any ideas of how to fix this? PLEASE HELP!!!  Thank you!

    I am having a problem making phone calls using Facetime.  I was able to use it on two separate occassions; however, now I can not.  I can receive calls, but can not make them.  Not sure what to do.  Any ideas?  Any help would be greatly appreciated.
    Thank you VERY much!

    There are a lot of posts in the forums today with people having problems with iMessage.   There was also a published outage yesterday, so it's possible there are still some issues that may be impacting you both.
    I would just wait it out - I'm sure it will be sorted out soon.

  • HOw To Do This Idea :: Please Help

    Hello all folks .. i create employees table .. contain Name n Job n salary n Hiredate
    and i design the form like module the thing i want that when i insert new employees data that is similer to other i intserted before it came out as a pop menu so i can choose it so example if i insert in the Name: jean and save it then i type in the name item the j character it show me that there was jean inserted befor n so on i can choose it if it was what i want to insrt .. hope u got the idea n need the answer ......... thnx fellas

    Maybe populate some record groups with data when inserting? when doing a new insert, search in the record group after e.g. 'J' and display the result...
    regards
    Christian

  • I have an update required for Evernote in my Imac app store, but cannot find how to get this update. It says to sign in with my emailm address, but I cannot find a way to do this.  Please help!!

    I recently downloaded Mlountain Lion on my Imac. It shows that I have an update for Evernote that should be downloaded, but I cannot find out how to complete this update. It asks for me to sign in with my email address, but does not show how to do this.  Please help!

    I have done exactly what you said. When I check "update", a screen  drops down that asks that I enter my email address to continue........but i cannot find any way to do this.
    In the past, all I would do is check "update", and the update would take place. Since I upgraded to Mountain Lion, this has changed, and i do not know how to do this simple thing.......the app store shows an update is due to be updated, but i cannot find out how to do it.

  • Sir, We have around 500 items as Insurance Spares in the stores. These spares are checked once in 6 months for their healthiness, storage, etc with a special checklist. We want this checklist an schedule in SAP ( MM). How to do it? Please help.

    Sir, We have around 500 items as Insurance Spares in the stores. These spares are checked once in 6 months for their healthiness, storage, etc with a special checklist. We want this checklist an schedule in SAP ( MM). How to do it? Please help.We are presently doing it as similar to PM schedule ( PM module) but want it in MM module.

    Hi Prerna
    Please refer the this doc ...it might help you
    http://www.erptips.com/Samples/ERPtips-SAP-Training-Manual-SAMPLE-CHAPTER-from-Basic-Quality-Management.pdf
    and kindly update the status if it works or not
    Regards
    Partha

  • When i try to boot itunes, screen goes black and a message pops up and says not compatible with the visual elements. how do i fix this? itunes wont even open at this point. please help. thanks :)

    When i try to boot itunes, screen goes black and a message pops up and says not compatible with the visual elements. how do i fix this? itunes wont even open at this point. please help. thanks

    Let's first try the following document, only be sure that none of the boxes in the compatibility mode tab are checked (not just the compatibility mode box itself):
    iTunes for Windows: How to turn off Compatibility Mode

  • I accidentally dropped macbook air that was in a book bag. The keyboard is working because I can see the light but the screen is black and it won't turn off. How should I fix this? Please Help ME!!

    I accidentally dropped my friend's macbook air that was in a book bag. The keyboard is working because I can see the light but the screen is black and it won't turn off. How should I fix this? Please Help ME!!
    I tried to turn it off and it didn't work... and I held on to the shift key too and it still doesn't work..
    Please help me..

    Accidental damage is not covered under Apple warranty.  And it seems there is much accidental damage.  Only a Genius Bar tech looking at it can tell how much it will cost to repair.
    Cost to repair will be high, I suspect (though Genius Bar will confirm/deny.
    There is no gentle way to say this sir/ma'am ... someone will need to pay for your friend's MBA repairs.

  • I downloaded Itunes to my computer today to update my ipod's ios (4.2.1 yes i know im way behind) but when i click check for updates it tells me my ios is the current one. How can i fix this? please help!

    I downloaded Itunes to my computer today to update my ipod's ios (4.2.1 yes i know im way behind) but when i click check for updates it tells me my ios is the current one. How can i fix this? please help!

    and at the same time....
    I guess you can be glad that you at least aren't "way behind"!
    Cheers,
    GB

  • HT204230 this device is not longer eligible for creating a free i cloud accounting on my Iphone 5s , my old not working now cannot opened again just when i try make a free email this Message showed up  how i can fix it please help me  iPhone 5s, iOS 8.3

    this device is not longer eligible for creating a free i cloud accounting on my Iphone 5s , my old not working now cannot opened again just when i try make a free email this Message showed up  how i can fix it
    please help me
    iPhone 5s, iOS 8.3

    Create a new AppleID on a different iOS device or on a computer. You will
    then be able to use that newly created AppleID on your iPhone.

Maybe you are looking for

  • Failed intialize core device got a error whil installting solaris9 through

    Hi All iam setuping jumpstart server, i have downloaded free version solaris 10 x86 and i installed and i configured,config9(configurations) rules ,profile sysidcfg, hosts evry thing i configured when i run ./check script it is working fine server is

  • Does Photoshop CC store your files in the cloud?

    Hi, I want to buy Photoshop CS6 (but not all other creative apps).  Whilst there are some versions of Photoshop CS6 available from some web suppliers such as Amazon and Apple Store, it seems that the only way to keep the software up to date is to get

  • FIM CM Logon failure: unknown user name or bad password. (Exception from HRESULT: 0x8007052E)

    Hi, I am trying to install FIM Certificate management 2010. I am not able to access the CM Web portal. Whenever I login it shows the following error Logon failure: unknown user name or bad password. (Exception from HRESULT: 0x8007052E) This is the CM

  • Location of my images Edge Animate

    Hi, I have been trying to create a simple web page with few interactivity, it works fine in Edge Animate but when I view my page within a browser It looks different as I think the position of my Images are all relative! is there any possiblity for me

  • How can I download texts to my MAC

    I am trying to find a way to download texts to my macbook air from my iphone4. Looking forward to hearing your suggestions.