UoM is different from UoM in Material Master

Hi CCM experts,
In CCM2.0 , the UoM is showing Internal Unit of measurment and but we normally maintain in MM as Commercial UoM.
Can we synch this UoM with CCM with Commecial UoM.
Because of this Shoppers/Users are confusing while adding Item from the Catalog.
There is no iisue after adding the item.UoM is converting automatically to Commercial unit.
Currently we are transferring records from MM by using custom Interface prog.
Can any body tell me the solution.
Greatly appreciated
CK

Hello,
One solution I would like to suggest:
Create a custom table (Z table) and maintain your Internal Unit of measurment and Commercial UoM.Ask user/shoppers to put Internal Unit of measurment and while run time in the program pick up the Commercial UoM.
Hope this will work.
Best regards,
Vivek

Similar Messages

  • Urgent:Profit centre differing from SO to material master

    Hi SAP Gurus
    May i know where from Profit centre gets populated in the SO(Line item level-A/c assignment Tab-Profit centre field).
    To my understanding it gets populated from material master.
    But i have a sales order wherein the PC has PC$$$$ but when i checked the material master data ,i could find PC##### in the sales general plant view.
    Why it is differing?
    What i need to check further?
    Regards
    Sush
    Edited by: Sushma Gopichetty Laxman rao on Oct 8, 2008 3:49 PM

    Hello Sushma,
    May i know where from Profit centre gets populated in the
    SO(Line item level-A/c assignment Tab-Profit centre field).
    To my understanding it gets populated from material master.
    But i have a sales order wherein the PC has PC$$$$ but when
    i checked the material master data ,i could find PC##### in the sales general plant view.
    Why it is differing?
    What i need to check further?
    As you have cited that the profit Center set in Material Master record is different to the value available at Sales Order, please check in following points:-
    1:- Check the Change History log of the particular Sales Order.
    2:- Check whether there are any User exit being used which is altering the value of Profit Center of the Sales Order with the help of Technical consultant.
    Kindly share you observation based upon these above pointers.
    Regards,
    Sarthak

  • Idoc segments for additional UOM in material master

    HI, I have three questions
    a) we have the follwoing data defined in material master (additonal data)
    X UOM Y UOM EAN
    1 LITRES 1 LITRES NIL
    1 IGB (inner packg) 20 LITRES 345922222222
    1 GBE (packg) 20 LITRES 345922222222
    I need to know what is EAN no and in our case the EAN no is same for both inner packg and pack. . what does this mean. Sometimes we also see the EAN no is different. why... what it signifies ?
    2) We have outbound idoc trigerred from delivery. message type is WHSOD. in one of the segments (E1EDL24), the system shows the delivery qty and material no. This segment also shows the EAN NO AS 345922222222. In segment E1EDL26, the filed UMVKZ shows as 1 which is ok (numerator as shown above) but the numerator field shows 1 only (it does not show 20 litres,, i think the field name is UB something ).
    I need to know why the system is not showing 20 litres in numerator in the filed for segment E1EDL26.
    3) Had we have two different EAN in material master as above, did our standard message type would have shown the conversion factors (numerator and denomi ) as per the EAN nos.....If yes, then in which segments ,the WHSORD shows the Conversion factors based on different EAN nos in material master-UOM tab (for instance if 1 GBE (packg) = 30 LITRES and EAN IS 345911111111.... I think there will be as many segments in idoc as there are entries in Additonal data-UOM tab )
    rgds
    pamela

    Hi,
    As for as i know EANs  are not relevant to unit conversion. This is a number which uniquely identifies a material for a particular UoM.
    And regarding the numerator and denominator, check whether any logic is added in the corresponding segment which overwrites the value

  • PO Text from R/3 Material Master to Product Master in SRM

    Hello Forum,
    I want to replicate the PO Text from r/3 material master to Product master in SRM to be seen in commpr01..
    I am not sure if this text can be seen in SC even if it is not seen in commpr01..
    how can i achive this?
    Thanks
    Arshad

    Hi,
    You need to create a customer field or a new text in the documetnos brim at item level and to look for that text of the request through RFC using the badi DOC_CHANNGE.
    Rgs,
    Pedro Marques

  • Return PO Price is picked up from MAP of materia master,not from info.recod

    User Requirement :
    When creating return po ,the price is picked up from MAP of material master ,not from info.record
    I wrote a code at PO Enhancement "MM06E005" user exit  "EXIT_SAPMM06E_017",but don't change the price ,pls help me check what  the problem is ,thanks.
    The below is my code.
    DATA : M_VERPR LIKE MBEW-VERPR,
           M_PEINH LIKE MBEW-PEINH,
           M_MEINS LIKE MARA-MEINS.
    CLEAR :M_VERPR,M_PEINH,M_MEINS.
    CHECK SY-TCODE = 'ME21N ' OR   SY-TCODE = 'ME22N' OR   SY-TCODE = 'ME23N' .
    IF I_EKKO-BSART = 'ZNB7'.
        LOOP AT TEKPO.
      SELECT SINGLE VERPR PEINH FROM MBEW INTO (M_VERPR,M_PEINH)
                                             WHERE MATNR = I_EKPO-MATNR AND BWKEY = I_EKPO-WERKS.
        SELECT SINGLE MEINS FROM MARA INTO M_MEINS WHERE MATNR = I_EKPO-MATNR.
        TEKPO-INFNR = '  '.
        TEKPO-NETPR = M_VERPR.
        TEKPO-PEINH = M_PEINH.
        TEKPO-MEINS = M_MEINS.
        TEKPO-BPRME = M_MEINS.
        TEKPO-NETPR = TEKPO-NETPR * I_EKKO-WKURS.
        MODIFY TEKPO TRANSPORTING NETPR PEINH MEINS BPRME NETPR.
        CLEAR TEKPO.
      ENDLOOP.

    Hi  Gunawan,
    According your meaning ,I change the logic as following:
    IF I_EKKO-BSART = 'ZNB7'.
      SELECT SINGLE VERPR PEINH FROM MBEW INTO (M_VERPR,M_PEINH)
                                           WHERE MATNR = I_EKPO-MATNR AND BWKEY = I_EKPO-WERKS.
      SELECT SINGLE MEINS FROM MARA INTO M_MEINS WHERE MATNR = I_EKPO-MATNR.
      TKOMV-KNUMH = ''.
      TKOMV-KAWRT = M_VERPR  *  I_EKKO-WKURS.
      TKOMV-KPEIN = M_PEINH.
      TKOMV-KMEIN = M_MEINS.
    EndIF.
    But the values of the fields are not updated,I need to write the code in EXIT_SAPMM06E_017 of PO Enhancement,may you help me ,thanks.

  • Messg-AAPO189 :Account object Cost Center differs from that in asset master

    At the time of Asset Acquisition in T-Code F-90 using Internal order, the system throws the following error:
    Message-AAPO189  :Account object Cost Center differs from that in asset master
    But in Asset Master data and Internal Order Master data's Cost Centers are same. 
    And we are not facing this problem for all Assets (only for few asset class only we are facing this error).
    Please guide on this.
    Note:
    We are not using Joint Venture Accounting.
    Regards
    JS
    Edited by: JS on Aug 12, 2009 7:14 PM

    Closed

  • Not able to change UOM in material master for a material

    Hi all ,
    I have a issue with changing of the UOM in the material master , IN MMO2  after changing the UOM , in Display error , its showing the error as : The base unit of
                                         The reasons for
                                         Manual  reservation
                                         Reserv.No   , Item - No data
                                         Purchase order  - 30017056  , Item 1 - 1
    There is no stock in the previous as well as current period , and deleted the PR , still i am not able to change
    Please help urgently
    Thanks in Advance
    Neha

    Hi Satyajit,
    Please look at OSS  Note 1069560 - Data inconsistencies: Activating integration. models in parallel, if this helps you.
    Since  Gross data of material is in the basic view, it is common across plants , whereas, IMs are normally designed to have material masters at plant level.
    We may have same material in different IMs with different  plants. Therefore changes of the basic view fields are then contained in multiple IMs.  SAP advises to have a larger IM or sequential activation of IMs.
    I hope this will  help you .
    Regards
    Datta

  • Change UOM in Material Master Problem

    Hi all expert,
    Im trying to change a raw material UOM from KG to Liter in material master, i have deleted all the document related to the raw material, but when i change the UOM, it display message as below:
    Material Master Maintenance
    The base unit of measure cannot be changed.
    The reasons for this are:
    Independent requirements are already assigned to the material.
    Plant MRP area
       JK01  
    I can't find the independent requirements so can't delete it.
    Hope someone can give me advise.
    Very thanks for help.

    You can also see the planned ind. req. for  your material from Txn. MD63                                                                               
    If you delete the ind. reqs. no longer appear when you access via trans.       
    MD62/MD63.  However, the records are still in table PBIM with a                
    deletion flag set on field LOEVR, so,  you have to do the planned              
    independent requirements reorganization as described in note 135807.                                                                               
    I hope this can help you !!!

  • Error while changing the UoM in material master

    Hi experts....
    I am not able change the UoM in the material master. Even if,  all the PR , PO and reservations are cancelled .
    It still gives me error message " Manual  Reservations already  exists "
    Thanx
    Ganesh

    Hi
    may be some entries got not cancelled properly and entries got locked.
    Just check in SM12 if no entries are locked.
    regards
    Sidi

  • Change of UOM in material master?

    Dear SAPIENTS,
    I created a material  with UOM (M)just now and than assigned to inspection plan. Now I am changing the UOM of material to Nos.. I was getting following
    Error: The base unit of measure cannot be changed
    The reasons for this are
    Routings already exist that are assigned to the material.
       RType          RtgGrp            GpC         Plant
       Q             QRW6MTQT        1            1100
    SO I removed the material from inspection plan. But still I am getting the same error. Can anybody tell me the reason behind it?
    Regards,
    Kaushal Rai

    Hi Kaushal,
    You need to delete it from the table also.
    The table is MAPL
    To delete entry from table
       1. Run trx SE16n (preferable) or SE16.
       2. Enter the Table MAPL.
       3. Enter the group and counter number.
       4. Now in the command window (Where you type the T Codes) type "_&sap_edit_". And press enter.
       5. A message such "SAP editing function is activated" will flash.
       6. Execute
       7. Delete the entry.
    Then change the UOM
    Regards,
    Shyamal

  • PP: Production Order Qty UOM should be based on the sales order Qty UOM though having Alternate UOMs in material master

    Hello PP GURUS I am new to this and i have one issues. I.e., While creating the Production Order, want the unit in the production order should be based on the sales order unit instead of what has been defined in the material master. Since, having 3-4 alternate unit of a material & can create a Sales Order in any one of them.
    Also pls let me how to go through
    either with the help of ABAP or configuration.
    If it is with the configuration pls let me know the solution to arrive.
    Eg: Base UOM is KGS
          Alt UOMs: SQM, MTR, NOS
    Sale order is Prepared with SQM and the same shall be in production order too to produce qty.
    Pls help me.
    rgds,
    Kumar V

    Hi
    First you have to maintain alternate units in mateial master for that first go in additional data & maintain the alternate units as below..
    For example
    1200 M2=1 KG For SQM
    12 M=1 KG For MTR
    3 PC=1 KG For NOS
    And then you can get Sales unit field in sales data 1 view enter your sales unit in that field & you will get production unit in work scheduling views as per your desire production units and according to that units your sale order & production order will pick that units & you can proceed accordingly but remember that first maintian the conversion factor as above other wise it will not accept hope that it will help you have a nice day...
    Regards,
    Reena

  • UOM in Material Master

    Hi,
    Is it true that i cant change the UOM of material (base unit) even if there exist PO and PR for that material ( even though these are not open)? There are no scheduling aggrement too. The stock of material is 0 for this period as well as previous period. I tried to change the UOM for this material but the system gave error that the UOM cannot be change.
    Dinakar

    You can only change the base units of measure under the following circumstances
    1.No stocks are available for the material.
    2. There are no existing purchase requisitions, purchase orders, or scheduling agreements for the material.
    3 At present, no purchase orders or purchase order items are being created or changed.
    Run MM02 (Change Material Master immediately). - Overwrite the old base unit of measure with the new one in basic data screen. - Save the change. - System checks If a change criterion (MM02) is meeting all necessary prerequisites (as mentioned in above .System allows changing base unit of measure.
    Otherwise it displays warning or error. You can display the reason for this, by choosing Display Errors (ctrl+F1) .in that take those purchase requistions and purchase orders and close it.then try again.
    Generally it will be difficult to change Base UOM,intead of that you can mark that material for deletion and goahead in creatin a new material with new UOM as base UOM.
    Hope it helps

  • Change UOM in Material master

    Hi friends,
    I have a material X in Plant ABC and Plant XYZ.
    I have no open PR's and PO's for those materials.
    I have received 10 Ea in Plant ABC on 10/20/09 ( Current stock is 10 ea in ABC)
                       and 20 Ea in Plant XYZ on 11/12/2009.( Current stock is 20 ea in XYZ)
    Now I wanted to change the UOM from EA to LB.
    I did issue (GM 201) 10 Ea from ABC and 20 Ea from XYZ. So, in MMBE no stock was showing.
    Still, when i try to change UOM, it was erroring that "Stock exist in Plant ABC and Plant XYZ" ????
    Any Idea, why so.
    Appreciate your valuable feed back.
    Note: I could change the UOM once I canceled the previous material documents to make sure Zero stock.
    But, Why I could not be able to change when I issue (GM 201) and made zero stock????
    Regards,
    Dev.

    Hi,
    According to your explanation the condition has gone through as below scenarios:
    You have received 10 Ea in Plant ABC on 10/20/09 ( Current stock is 10 ea in ABC)
    and 20 Ea in Plant XYZ on 11/12/2009.( Current stock is 20 ea in XYZ)
    You've issued 10ea in plant ABC on 11/23/09 (GM 201)
    and you've I issued 20 ea in plant XYZ on 11/23/09 (GM201)
    From the above, I conclude your current period is 11/2009 (November) and for solving the case on:
    Plant ABC. --> cancel your GI (mvt 202) for 10ea with the same current date 11/23/09 then follow by
                            GI with the previous posting period 10/30/09
    Plant XYZ --> display material stock with MM03 under storage location stock tab for previous period stock info.
                           then you should GI for relevant qty that you've seen onto previous period posting date.
    Hope it may helps you...
    Cheers,
    Girang
    Edited by: girang irawan on Nov 25, 2009 9:48 AM

  • CHANGING UOM in material master

    Q1. Which unit of messurement is linked with the net value in purchase Order.
    Q2. Can we change the unit of messurement of a material.

    Hello,
    Q1. Which unit of messurement is linked with the net value in purchase Order.
    Ordering Unit
    Q2. Can we change the unit of messurement of a material.
    Yes we can except base unit.
    Thanks,
    Venu

  • Planned delivery time Pickup from inforecord not material master data

    Hi,
    Currently the delivery dates of the orders are calculated with the delivery time which is marked in MM02. Since the purchasing integrates this information in the info record, we want the delivery date to be calculated with delivery time of the info record instead of calculating it with the data of MM02
    Please suggest any config.
    Thanks
    Shital D

    Hi,
    Try like this, ME21N, put the vendor, material , plant and other Org elements, hit enter, and check P.O what is the planned delivery time that you are seeing, also is the same PIR also appearing in the P.O when you scroll to the right?
    Also note.. that system might be picking 3, maybe saturday and sunday holiday is coming, check that too
    Regards
    Shailesh
    Edited by: Shailesh Rajan on Jul 7, 2011 7:00 PM

Maybe you are looking for

  • Pages, Numbers and Keynotes doesn't allow me to save documents

    I created a new document in pages, numbers or keynote and, when trying to save it to my documents folder, it shows me "Couldn't auto-save document". I've tried with different folders with the same results. There's no problem when saving to iCloud. I

  • "PDE bundle could not be loaded," HP 7510 All-in-One​, Mac OS X 10.9.5

    The selection "PDE" in the print dialogue box is listed with a strikethrough. Choosing PDE displays the message "This bundle could not be loaded because the required components could not be found.  Contact the bundle's creator ... for the newest vers

  • Illustrator CS6 path selection color

    I'm familiar with older versions of Illustrator, but kinda new to CS6. Double-clicking a path in the Layers palette used to offer the option to change the color of that path. Is this option still around somewhere? Thanks.

  • Writing commands or statements in abap debugger

    Hi, I want to know is it possible to write commands or select qurey in ABAP DEBUGGER so that data can be verfied. plzz provide  me guidelines for it. Edited by: ricx .s on May 15, 2009 11:18 AM

  • Event Driven Quantity Assignment with Backorder Process

    Hi, I have Configured EDQA for Activity Change Stock Data. This Activity will "trigger" Backorder Process. I have defined sales order characteristics that shoulb be used in a filter. I'd like to include in Workflow for EDQA (see SWU3 and SWETYPV tran