Unit of measurement : VBRP-VRKME

Hi all,
The Unit of Measurement field is VBRP-VRKME in my scenario.
Now the problem is that it is showing the values in german language but if i double click on the line item , the same field is shown in english language.
In my internal table only  the German language values are coming. How can i get the corresponding English values.??

Check the conversion routine applied on to that field in the data element section.
CONVERSION_EXIT_CUNIT_INPUT
CONVERSION_EXIT_CUNIT_OUTPUT
in order to fetch the values into english apply the same .
Regards,
Vijay

Similar Messages

  • How can i know a perticular  quantity unit of measure is convertable or not

    hi ,
    depending on the delivery quantity unit of measure (likp-vrkme).
    i have to convert into M2,LM,VM.
    i require 2 things.
    1. for exanmple let the LIKP-VRKME = 'XX'.
       how can i come to know wether XX is convertable to M2,LM,VM or all of the    three.
    2. i need a standard unit of measure  function module .
    Thanks & Regads
    Suresh kumar

    hi ,
    very good question...
    the answer is the UOM must have same dimension...
      ex: If you want to convert 1litre of petrol to some other UOM, the UOM which you are going to convert must have the same dimension .. in this case petrol is a liquid ... litre has dimension liquid... litre can be converted to Gallons,  kilo litres, barrles.. etc
    You can find the relationship in table T006 and filed DIMID... check whether all the UOM has same DIMID .. then go ahead with the conversion...

  • How to find out the conversion exit format for VBRP-VRKME

    Hi Gurus,
               I am writing a report to fetch delivery details based on storage location'123'. My requirement is tat i shud convert the Billed Quantity unit TO Base unit of measure. In my VBRP table the field value/contents of VBRP-VRKME have values PAK for PAC( packets) and KAR for CAR(carton). When i click on User-specific Settings - - Check the filed CHEECK CONVERSION EXITS , i am able to get see the PAC and CAR respectively.
          But unfortunately when i selecting te fields form vbrp in my internal table i am getting the values 'PAK' for PAC and 'KAR' for CAR'. AS i am writing a report can any one suggest me how to convert this , as i wud b making use of FM MD_CONVERT_MATERIAL_UNIT  to convert to base unit of measure, n this FM is not accepting the values like PAK and CAK.
          Your Sugesstions are of utmost importance for me.
    Thanking you,
    ZIa

    Hi,
    Conversion routines are maintained at Domain Level(Definition Tab), Meins is the domain for VRKME data element.
    You have to use the following routines,
    CONVERSION_EXIT_CUNIT_INPUT
    CONVERSION_EXIT_CUNIT_OUTPUT
    Regards
    Srini

  • Sales of unit of measure

    Hi Forum,
      Can anybody tell me the table - field for sales Unit of measure for Material.

    hi,
    check this,
    VBRP-VRKME.
    Regards,
    Arpit

  • EDI unit of measure issue

    One of our customers orders a product in unit measure EA (each).  Our stock-keeping unit is PL (pail).  The output does get processed and issues message:
    "PL is not assigned to an ISO unit of measure (item 000001, field VRKME)".
    Even if I updated the table for PL, I'm almost certain it will be rejected by our customer because their system is expecting the line item to have unit of measure "EA".
    I would appreciate suggestions as to how to address this issue.
    Thank you,
    bak

    Hello,
    In the SPRO --> IMG --> General Settings , you have measurement units setting. in this you have ISO code maintenance. Check whether PL is assigned here.
    Prase

  • BAPI_REQUISITION_CREATE : Unit Of Measurment Issue

    Hello,
    I am trying to create PR by using BAPI_REQUISITION_CREATE.
    While creating PR I am facing a issue. I am not able to pass Unit of Measurment.
    Can anybody plz help me how to pass UOM using this Bapi.
    Thanks & Regards,
    Nikita

    *& Report  ZSOPR
    REPORT  ZSOPR.
    TABLES : VBAK, VBAP, VBEP, VBPA, VBKD, mara.
    DATA :  PREQ_NO LIKE BAPIEBANC-PREQ_NO,
            BAPIEBANC LIKE   BAPIEBANC OCCURS 0 WITH HEADER LINE,
            RETURN LIKE BAPIRETURN OCCURS 0 WITH HEADER LINE.
    DATA :IT_VBAK LIKE TABLE OF VBAK WITH HEADER LINE.
    DATA : TEXT1(38) TYPE C.
    DATA : INDICATOR.
    DATA: BEGIN OF ERROR_MESSAGE_TEMP OCCURS 0.
            INCLUDE STRUCTURE BAPIRETURN.
    DATA:END OF ERROR_MESSAGE_TEMP.
    DATA: BEGIN OF ERROR_MESSAGE OCCURS 0,
              SPACE1(5) TYPE C,
              TYPE TYPE BAPIRET2-TYPE,
              SPACE2(5) TYPE C,
              NUMBER TYPE BAPIRET2-NUMBER,
              SPACE3(5) TYPE C,
              MESSAGE TYPE BAPIRET2-MESSAGE,
              END OF ERROR_MESSAGE.
    DATA: BEGIN OF ERROR_MESSAGE_TEMP2 OCCURS 0,
              SPACE1(5) TYPE C,
              TYPE TYPE BAPIRET2-TYPE,
              SPACE2(5) TYPE C,
              NUMBER TYPE BAPIRET2-NUMBER,
              SPACE3(5) TYPE C,
              MESSAGE TYPE BAPIRET2-MESSAGE,
              END OF ERROR_MESSAGE_TEMP2.
    401231536
    SELECT * FROM VBAK INTO CORRESPONDING FIELDS OF TABLE IT_VBAK WHERE ERDAT ge '20091216' AND ( AUART EQ 'ZOR2' OR AUART EQ 'ZOR6' )
    and SPART eq '30'  and VSNMR_V eq ' '.
    and vbeln eq '0401231536'.
    LOOP AT IT_VBAK .
      CLEAR : INDICATOR.
      if it_vbak-vgbel ne  ' '.
        CLEAR : vbkd.
        SELECT SINGLE * FROM VBKD WHERE VBELN EQ IT_VBAK-VBELN.
        IF SY-SUBRC EQ 0 AND VBKD-BSARK EQ ' ' .
          INDICATOR = ' '.
        ELSE.
          INDICATOR = 'X'.
        ENDIF.
      endif.
      ON CHANGE OF IT_VBAK-VBELN.
        CHECK INDICATOR EQ ' ' .
        BAPIEBANC-PREQ_ITEM = '10'.
        CLEAR : VBAP.
        SELECT  * FROM VBAP WHERE VBELN EQ IT_VBAK-VBELN.
          CLEAR : VBEP.
          SELECT SINGLE * FROM VBEP WHERE VBELN = VBAP-VBELN AND POSNR EQ VBAP-POSNR.
          CLEAR : VBPA.
          SELECT SINGLE * FROM VBPA WHERE VBELN EQ VBAP-VBELN AND PARVW EQ 'VE'.
          BAPIEBANC-DOC_TYPE = 'NB'.
          BAPIEBANC-PREQ_NAME = VBPA-PERNR.
          BAPIEBANC-ITEM_CAT = '7'.
          BAPIEBANC-SUPPL_PLNT = 'UHVC'.
          BAPIEBANC-STORE_LOC = 'FG01'.
          BAPIEBANC-PLANT = VBAP-WERKS.
          BAPIEBANC-MATERIAL = VBAP-MATNR.
          BAPIEBANC-PUR_GROUP = 'LOG'.
    clear : mara.
    select SINGLE * from mara where matnr = VBAP-MATNR.
    DATA : A LIKE EKPO-MENGE.
    A =  VBAP-KWMENG.
          CALL FUNCTION 'MD_CONVERT_MATERIAL_UNIT'
            EXPORTING
              I_MATNR                    =  VBAP-MATNR
              I_IN_ME                    =  VBAP-VRKME
              I_OUT_ME                   = MARA-MEINS
             I_MENGE                    =   VBAP-KWMENG
              I_MENGE                    =   A
    IMPORTING
       E_MENGE                    =  A
    EXCEPTIONS
      ERROR_IN_APPLICATION       = 1
      ERROR                      = 2
      OTHERS                     = 3
          IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    ******DATA : BAMNG LIKE BAPIEBANC-QUANTITY.
    ******BAMNG = VBAP-KWMENG.
    ******DATA: BAMEI LIKE BAPIEBANC-UNIT.
    ******BAMEI  = BAPIEBANC-UNIT.
         BAPIEBANC-QUANTITY = BAMNG.
         BAPIEBANC-UNIT =  VBAP-VRKME.  " CHN
         BAPIEBANC-UNIT =  BAMEI .  " CHN
         BAPIEBANC-QUANTITY = VBAP-KWMENG.
          BAPIEBANC-QUANTITY = A.
         BAPIEBANC-UNIT =  VBAP-VRKME.  " CHN
          BAPIEBANC-UNIT =  MARA-MEINS.  " CHN
          BAPIEBANC-DELIV_DATE = VBEP-EDATU.
          BAPIEBANC-TRACKINGNO = VBAP-VBELN.
          APPEND BAPIEBANC.
          BAPIEBANC-PREQ_ITEM = BAPIEBANC-PREQ_ITEM + 10.
        ENDSELECT.
        PERFORM S2.
        CLEAR : BAPIEBANC, TEXT1.
        REFRESH : BAPIEBANC.
      ENDON.
    ENDLOOP.
    *&      Form  S2
          text
    FORM S2.
      CALL FUNCTION 'BAPI_REQUISITION_CREATE'
        EXPORTING
          SKIP_ITEMS_WITH_ERROR                =
          AUTOMATIC_SOURCE                     = 'X'
       IMPORTING
         NUMBER                               = PREQ_NO
        TABLES
          REQUISITION_ITEMS                    = BAPIEBANC
          REQUISITION_ACCOUNT_ASSIGNMENT       =
          REQUISITION_ITEM_TEXT                =
          REQUISITION_LIMITS                   =
          REQUISITION_CONTRACT_LIMITS          =
          REQUISITION_SERVICES                 =
          REQUISITION_SRV_ACCASS_VALUES        =
         RETURN                               = RETURN
          REQUISITION_SERVICES_TEXT            =
          REQUISITION_ADDRDELIVERY             =
          EXTENSIONIN                          =
       LOOP AT RETURN.
    *BREAK-POINT.
         ENDLOOP.
      ERROR_MESSAGE_TEMP[] = RETURN[].
      CLEAR : text1.
      LOOP AT ERROR_MESSAGE_TEMP WHERE TYPE EQ 'I'.
        ERROR_MESSAGE-SPACE1 = ''.
        ERROR_MESSAGE-TYPE = ERROR_MESSAGE_TEMP-TYPE.
        ERROR_MESSAGE-SPACE2 = ''.
        ERROR_MESSAGE-NUMBER = ERROR_MESSAGE_TEMP-LOG_NO.
        ERROR_MESSAGE-SPACE3 = ''.
        ERROR_MESSAGE-MESSAGE = ERROR_MESSAGE_TEMP-MESSAGE.
        APPEND  ERROR_MESSAGE.
        TEXT1 = ERROR_MESSAGE_TEMP-MESSAGE.
      ENDLOOP.
      LOOP AT ERROR_MESSAGE_TEMP WHERE TYPE EQ 'E'.
        ERROR_MESSAGE_TEMP2-SPACE1 = ''.
        ERROR_MESSAGE_TEMP2-TYPE = ERROR_MESSAGE_TEMP-TYPE.
        ERROR_MESSAGE_TEMP2-SPACE2 = ''.
        ERROR_MESSAGE_TEMP2-NUMBER = ERROR_MESSAGE_TEMP-LOG_NO.
        ERROR_MESSAGE_TEMP2-SPACE3 = ''.
        ERROR_MESSAGE_TEMP2-MESSAGE = ERROR_MESSAGE_TEMP-MESSAGE.
        APPEND  ERROR_MESSAGE_TEMP2.
        ERROR_MESSAGE_TEMP-MESSAGE = it_vbak-vbeln.
        ERROR_MESSAGE_TEMP2-SPACE1 = ''.
        ERROR_MESSAGE_TEMP2-TYPE = ERROR_MESSAGE_TEMP-TYPE.
        ERROR_MESSAGE_TEMP2-SPACE2 = ''.
        ERROR_MESSAGE_TEMP2-NUMBER = ERROR_MESSAGE_TEMP-LOG_NO.
        ERROR_MESSAGE_TEMP2-SPACE3 = ''.
        ERROR_MESSAGE_TEMP2-MESSAGE = ERROR_MESSAGE_TEMP-MESSAGE.
        APPEND  ERROR_MESSAGE_TEMP2.
      ENDLOOP.
      IF RETURN-TYPE NE 'E'.
        IF NOT PREQ_NO IS INITIAL.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
           EXPORTING
             WAIT          = 'X'
              IMPORTING
                RETURN        = RETURN
      01.12.2009    **************
          CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
            EXPORTING
              ENDPOS_COL         = 80
              ENDPOS_ROW         = 10
              STARTPOS_COL       = 1
              STARTPOS_ROW       = 1
              TITLETEXT          = 'PR CREATED WITH FOLLOWING MESSAGES'
    IMPORTING
      CHOISE             =
            TABLES
              VALUETAB           =  ERROR_MESSAGE
           EXCEPTIONS
             BREAK_OFF          = 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.
          MESSAGE I001(001) WITH RETURN-LOG_NO RETURN-MESSAGE.
    end of comment  ***************
          IF SY-SUBRC = 0.
            text1 =   text1+28(10).
            clear : vbak.
            SELECT * FROM VBAK WHERE VBELN = IT_VBAK-VBELN.     " 16.12.2009
              VBAK-VSNMR_V = TEXT1.
              MODIFY VBAK.
            ENDSELECT.
          endif.
        ENDIF.
      ELSE.
        CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
    EXPORTING
    ENDPOS_COL         = 80
    ENDPOS_ROW         = 10
    STARTPOS_COL       = 1
    STARTPOS_ROW       = 1
    TITLETEXT          = 'PR NOT CREATED :: FOLLOWING ERRORS:-'
    IMPORTING
      CHOISE             =
    TABLES
    VALUETAB           =  ERROR_MESSAGE_TEMP2
    EXCEPTIONS
    BREAK_OFF          = 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.
        MESSAGE E001(001) WITH RETURN-LOG_NO RETURN-MESSAGE.
             ENDIF.
        REFRESH:ERROR_MESSAGE_TEMP2,ERROR_MESSAGE,RETURN,ERROR_MESSAGE_TEMP.
        CLEAR:ERROR_MESSAGE_TEMP2,ERROR_MESSAGE,RETURN,ERROR_MESSAGE_TEMP.
      ENDIF.
    *REFRESH:HEADER.
         CLEAR : HEADER.
      REFRESH:ERROR_MESSAGE_TEMP2,ERROR_MESSAGE,RETURN,ERROR_MESSAGE_TEMP.
         I_ITEM, I_PARTNERS, I_SCHEDULE.
      CLEAR:ERROR_MESSAGE_TEMP2,ERROR_MESSAGE,RETURN,ERROR_MESSAGE_TEMP.
         I_ITEM, I_PARTNERS, I_SCHEDULE.
    ENDFORM .                    "S2

  • Convert unit of measure to metric

    Does anyone know how to convert a unit of measure to metric?  Is there a function module that I can use? Thanks.

    report ychatest.
    here qty is ur quantity field in ur internal table ,
    loop at itab.
      call function 'UNIT_CONVERSION_SIMPLE'
        exporting
          input                      = itab-qty
    *   NO_TYPE_CHECK              = 'X'
    *   ROUND_SIGN                 = ' '
         unit_in                    = itab-vrkme
         unit_out                   = 'EA'
      importing
    *   ADD_CONST                  =
    *   DECIMALS                   =
    *   DENOMINATOR                =
    *   NUMERATOR                  =
         output                     = itab-qty
    * EXCEPTIONS
    *   CONVERSION_NOT_FOUND       = 1
    *   DIVISION_BY_ZERO           = 2
    *   INPUT_INVALID              = 3
    *   OUTPUT_INVALID             = 4
    *   OVERFLOW                   = 5
    *   TYPE_INVALID               = 6
    *   UNITS_MISSING              = 7
    *   UNIT_IN_NOT_FOUND          = 8
    *   UNIT_OUT_NOT_FOUND         = 9
    *   OTHERS                     = 10
    modify itab transporting qty.
    Endloop.

  • Error while defining alt unit of measurement in material master

    All SAP gurus,
    i am trying to define a alt unit of measurement in a finished material, the base unit of measurement is in MT, and the sales unit is nos. the conversion formula is 53 nos = 1kg i.e. 1MT = 53000 nos. as conversion can be done only with base unit of measurement i am giving 53000 nos = 1 MT, but system unable to calculate the conversion as it is not taking mere than 3 digit after decimal.
    e.g.    if 53000 nos = 1 MT
    then  1 nos should be = 0.000018 MT
    but system not taking this value as this value contain 6 digit after decimal
    suggest me what can be the way out? with detailed steps. can i increase the post decimal value or i have to define another middle alt unit of measurement (like KG). and if that is to be done then how.
    Regards
    BKR

    Hi,
    With help of Basis team check the decimal places for u r user ID.
    In t-code SU01 >>> Under Default tab
    Kapil

  • Error message 'Enter unit of measure' in Webclient

    Hello Experts,
    We are working on CRM 5.0 SP 7, IC WebClient and have implemented the BAdi "<b>CRM_SERVICEPROD_BADI</b>" to assign a service product ''<b>INVESTIGATION'</b> whenever user selects service ticket in WebClient.
    However, when confirming a Business Partner and accessing the service ticket, an error is getting displayed stating "<b>Enter the unit of measure</b>".
    We have already mentioned the unit of measure in Product but it seems it is not picking from there.
    Please help me to remove this error.
    Reward points assured for useful answers.
    Regards,
    Amit

    hi
    I had a similar Problem
    You will have to assign the base unit of measure in service tab as hours and then in the sales and distribution tab assign the same unit in the sales unit and give minimum order quantity(for e.g-1) & delivery unit ,this you will have to do for all the sales areas you might have mapped in the S&D tab
    I'm sure the issue will be resolved
    Cheers!!
    Regards
    Shankar Raj

  • How to retrieve the values from a table if they differ in Unit of Measure

    How to retrieve the values from a table if they differ in Unit of Measure?

    If no data is read
    - Insure that you use internal code in SELECT statement, check via SE16 desactivating conversion exit on table T006A. ([ref|http://help.sap.com/saphelp_nw70/helpdata/en/2a/fa0122493111d182b70000e829fbfe/frameset.htm])
    If no quanity in result internal table
    - There is no adqntp field in the internal table, so no quantity is copied in itab ([ref|http://help.sap.com /abapdocu_70/en/ABAPINTO_CLAUSE.htm#&ABAP_ALTERNATIVE_1@1@]).
    - - Remove the CORRESPONDING, so quantity will fill the first field adqntp1.  ([ref|http://help.sap.com/abapdocu_70/en/ABENOPEN_SQL_WA.htm])
    - - Then loop at the internal table and move the quantity when necessary to the 2 other fields.
    * Fill the internal table
    SELECT msehi adqntp
      INTO TABLE internal table
      FROM lipso2
      WHERE vbeln = wrk_doc1
        AND msehi IN ('KL','K15','MT').
    * If required move the read quantity in the appropriate column.
    LOOP AT internal_table ASSIGNING <fs>.
      CASE <fs>-msehi.
        WHEN 'K15'.
          <fs>-adqnt2 = <fs>-adqnt1.
          CLEAR <fs>-adqnt1.
        WHEN 'MT'.
          <fs>-adqnt3 = <fs>-adqnt1.
          CLEAR <fs>-adqnt1.
      ENDCASE.
    ENDLOOP.
    - You could also create another table with only fields msehi and adqntp and then collect ([ref|http://help.sap.com/abapdocu_70/en/ABAPCOLLECT.htm]) the data to another table.
    Regards,
    Raymond

  • Production Order for a Material with two units of measure?

    Hi Everybody I have the following issue.
    In my company there is a new production process with a Material that should be configured in the master data with the field "Base Unit of Measure" as per unit (each). But the production process, should be confirmed by tx CO11N, in Kilograms. I know that I can use the additional Data in tx MM03 to set a Production Unit, but the value of convertion would be fixed. For example 122 Kg = 1 each, the thing is that the value in kilograms for each lot can vary, one lot can weight 122 and another one can weghr 125, and in each case I shoul have two units in stock. And as I have the value of convertion fixed, when I confirm each lot one for 122 kg and another for 125 kg I will have 2.025 units in MB52.
    How can I solve this problems? I need to have the chance the confirm in kg changing for each lote the quantity but in the base Unit of Measure have one unit for lot. As if for tx CO11N I could have a field where I can set tha x quantity of Kilograms is x each.
    Kind regards
    Leandro. 

    Hi Ayoub, First thank`s for your promt answer,
    1. The Quantity is different, because is not a perfect process, there is a manual work in the process that makes this quantity differ, there is no big difference, maybe a Kilo or Two but the production mannager wants to have this registered. And besides in productions they manage kilograms, but for selling the comercials manage units (each - EA)
    2.The convertion rate is known at the end of the process after cutting and packaging a unit, they weight it.
    Regards
    Leandro

  • Standard report  for unit of measures

    Is there any standard report to see the Fert material unit of measures  and its alternate unit of measures.

    HI
    there is no standard reprot for you requirment.
    only UOM of material you canget from MM60.
    but if you want alternate also got with table data MARM
    1.use SE16-- enter the table name MARM
    2.enter the material(field MATNR), and execute you get the report
    -ashok

  • Report for Units of measurement for Material

    Hi
    Is there any report to extract the alterante unit of measurements for materials in a plant.
    Thanks

    Hi,
    Please use the below table,
    Related to Materials:
    MARA - Material Master: General data
    MAKT - Material Master: Description
    *MARM - Material Master: Unit of Measure*
    MAPE - Material master: Export control file 
    MARC - Material master: Plant data
    MARD - Material master: Storage location 
    MAST - Material link to BOM
    MBEW - Material valuation
    MLGN u2013 Material Master: WM Inventory
    MLGT u2013 Material Master: WM Inventory type
    MDIP - Material: MRP profiles (field contents) 
    MKOP - Consignment price segment (old versions of SAP)
    EBEW - Valuation of sales order stock
    QBEW - Valuation of project stock
    MVER u2013 Material Master: Consumption <Plant>
    DVER u2013 Material Master: Consumption <MRP Area>
    MVKE u2013 Material Master: Sales <Sales Org, Distr Ch>
    MLAN - Material Master: Tax indicator
    MARC - Material Master: Plant data
    MAPR u2013 Material Master: Forecast
    MARD u2013 Material Master: Storage Location
    MCH1 u2013 Material Master: X Plant Batches
    MCHA u2013 Material Master: Batches
    MCHB u2013 Material Master: Batch Stock
    MDMA - MRP Area data
    DBVM - MRP Planning File Entry: MRP Area
    MOFF - Outstanding Material Master Records (Maintenance status)
    MARCH - Material Master C Segment: History
    MARDH - Material Master Storage Location Segment: History
    MBEWH - Material Valuation: History
    MCHBH - Batch Stocks: History
    MKOLH - Special Stocks from Vendor: History
    MSCAH - Sales Order Stock at Vendor: History
    MSKAH - Sales Order Stock: History
    MSKUH - Special Stocks at Customer: History
    MSLBH - Special Stocks at Vendor: History
    MSPRH - Project Stock: History
    MSSAH - Total Sales Order Stocks: History
    MSSQH - Total Project Stocks: History
    Regards,
    Mohd Ali.

  • T006-Decan change after users have used the TO unit of measure

    Currently in our system for TO (tonnes) it has T006-Andec as 3 and T006-Decan as 0 and it issues the users a warning message "Order quantity violates rounding rule" if they type in decimals in the purchase order quantity.  We have been asked to change T006-Decan to a 3 and do away with the warning message.  What happens if you change T006-Decan from 0 to 3 after users have already used the unit of measure (TO) in the R/3 SAP_APPL 470 system on materials, purchase orders, sales documents, receipts, etc...?  I don't want to impact our users in production since I do not where this unit of measure has been used.  Any advice is welcomed.  Thank you.

    Hi
    If you are changing the decimal places in T006 - DECAN , the number which was 1000 would show as 1,000... so previously it was 1000 tonnes now it will show as 1 tonne.... such things happen....Check with SAP before doing changes to the Standard UOM's...
    I am not able to find the correct SAP note for this.... but its there hope you get it
    Thanks & Regards
    Kishore

  • Follow up material with different base unit of measure

    Hi all,
    I have the BOM with material Mat1 as a component. The base unit of measure of Mat1 is KG.
    Is it possible to replace Mat1 with Mat 2 material in MRP once the Mat1 warehouse stock is depleted.
    The base unit of measure of Mat 2 is KGK.
    The required quantity of MAT1 should be recalculated from KG to KGK accordanly unit ratio.
    Please, expain, where does it maintain?
    Thanks,
    Peter

    Hello Peter,
    You can use follow-up setting (set Mat2 as follow-up of Mat1 in MRP 4 view of material master if this follow-up scenario is valid for all BOM) with discontinuation indicator '1', w/o effective-out date. In this case Mat1's stock will run out (no PldOrd, PR, etc) will be created, and from the date, when Mat1's stock runs out, MRP will calculate with Mat2.
    As I told you, according to my best knowledge, you cannot realize this with different base unit of measures. (you have to change the buom of one of the related material masters or create a new material master if you cannot cope with buom-change).
    Follow-up group scenario can also be used but I guess different buoms will be a problem in that case as well.
    Maybe there are better solution but I'm not aware of it...
    BR
    Csaba

Maybe you are looking for

  • How do I add a widget to give a review or star rating for a book at the end of a book in iBooks Author?

    How do I add a widget to give a review or star rating for a book at the end of a book in iBooks Author? You know, how you buy books on iBooks and when you're finished reading it, there's a place where you can give a rating or review right there on th

  • Cannot see table in sql developer or sql plus

    I have created a record in application designer. I have then built the table. I can close the record and then find it again in application designer. But if I go to sql plus or sql developer, I cannot see it. Am I missing a step?

  • HP Officejet pro 8610 and laptop wont communicat​e

    Trying to setup new printer to print wirelessly.  Printer and laptop are both connected to the same wireless device but the laptop cant find the printer.  Disabled firewall and tried all the things listed under troubleshooting.  Any help would be app

  • 3D Features Not Appearing in CS4 Extended

    Hi - I have a license for Photoshop CS4 Extended (Windows) and for some reason whenever I install it the software appears to be installing as regular non-Extended CS4.  At least, the 3D menu items don't appear, and when I go to "About Photoshop" it d

  • HT2518 Migration assistant Pc to Mac

    I recently purchased my first MacBook Pro. I used to own a PC & still do. I've been trying to transfer my windows files (documents,music,photos etc...) from my PC laptop to my new Mac without success. I've tried using Migration Assistant connecting m