Relation betn Measuring Point & Classification

In Transaction Ik03, After entering measuring point ... Press enter.Now go to GOTO-->Classification.
On this screen we have two fields characteristic description & value.
i want the table or function module which give the relationship betn this value & measuring point.
Thanks In advance....

hi Yogesh,
Measurement document is in table IMRG. IMPTT is the table storing Measuring point. You can start at these tables.
regards,
Vinoth

Similar Messages

  • Measuring point update by production order confirmation

    Hi friends,
    I created a prt as equipment and assigned it to the routing. I created a production order and when i confirm the same i am getting following error as:
    Document MeasUnit has a different dimension to the characteristic unit
    Message no. IR071
    Diagnosis
    The measurement unit on creation of the measurement document must have the same dimension as the measurement unit of the characteristic of the measuring point.
    In this case, the measurement unit % does not suit the character unit EA of the measuring point 103.
    System Response
    Processing will not be continued.
    Procedure
    Use the possible entries help.
    Please suggest the solution.

    Hello Sir(s)
    i have gone through entire post for the subject related to measuring point auto update from production order confirmation.  I have tried the same but i dont know what i am missing.
    if i put some value like 1 or 2 and appropriate UOM then only my measuring document is being updated with the same value not with the actual confirmed quantity..  i have already maintained standard formulla in prt view.
    my basic requirement is to get actual value of produced quanity as counter update. means if 20 pieces have been produced and confirmed in co11n, then counter must bhe updated with the value of confirmed quantity.
    please advice what value should i put as usage in routing master to get actuall counter update.
    Will Highly appreciate your quick reply.
    Snapshots
    Regards.
    Mohammad.

  • Measuring points check in IE01 / IE02

    Dear all,
    When user create or change an Equipment (IE01 / IE02) , the user  should input field in Measuring points/counters.
    Is there any Exits or BADIs for this transaction.
    Thanks,
    Ikrar

    Hi,
    Read the documentation of customer exit component EXIT_SAPMIEQ0_001.
    In program SAPMIEQ0 (Equipment change), on click on save button:
    1) In you customer exit, read data from measuring points program, i.e. check LIMR0TOP include of function group IMR0 to identify the internal table / structures that contain the data for measuring points in program SAPLIMR0 screen 4110. This way you would come to know if the user has entered data for measuring points. If not, error out.
    you can use the syntax using field symbols to read data from other program:
    Sample code  (not related to measuring point program.
    DATA : var1 TYPE char25 VALUE '(SAPLIMSP)ISSM[]'.
    DATA : var2 TYPE char25 VALUE '(SAPLIMSP)SCRGNTAB[]'.
    FIELD-SYMBOLS: <fs_issm> TYPE ANY TABLE,
                   <fs_grtab> TYPE ANY TABLE.
    ASSIGN (var1) TO <fs_issm>.
    ASSIGN (var2) TO <fs_grtab>.
    Best Regards,
    Shyam
    Edited by: Shyam Khemani on Jun 15, 2011 11:58 AM

  • Relation between notification no and measuring point no or document

    Dear Expert's
    I want to link between notification no (qmnum) and measuring point no or measuring point document.
    I want to search measuring point number thorough notification no.
    plz suggest me ABAP purpose.
    thanks.
    regards:
    Neelesh Sonkar

    Hi,
    1. Get the EQUNR from the table "QMIH" using QMNUM.
    2. Get the MOVING_OBJECT from the table "IEQT_WL_MP" using EQUNR.
    3. Get the MDOCM (Measurement Document) POINT (Measuring Point) from the table "IMRG"
        using MOVING_OBJECT ( which is MDOCM ).
    Hope this will help you.
    Regards,
    Smart Varghese

  • Measuring Point History

    Hi! Experts
    We are working with MAM25 SR5 and we have the following quastion regarding measure point history:
    Currently we can see only one history document on the PDA. It is the last one that was registered on the system. But my  users want to see at least the last 3 ones if they already exist on the backend system. Is it possible ?? how can we show it ??
    Backend:
    The perform general setting
    Measuring Points:
    Variant:   XXXXXXX
    Vianta:    YYYYYY
    We did active the ckeck box Last Meas. Document in order to get it on the history parton the PDA.
    My questions are:
    1. Should I take that check box out in order to get more than one historic information ???
    2. Where should I control how many historic documents I want to see on the PDA ??
    Thank you very much
    Xiomara Aramendiz

    Hi Xiomara,
    have a look into SPRO - there you should see the question if you want the history or not. And related to that you can enter how many you like to see.
    If that is not the case in your system, then simply enhance the GETDETAIL handler for this object to return more then the last history.
    Hope this helps.
    Regards,
    Oliver

  • Measuring Point  / Counter button

    Hi,
    How to hide / display Measuring point & Counters button in Header data of Reference Functional Location(IL11).(Organisation data).
    Thanks & Regards,
    Santhosh

    Dear Santhosh,
    Try with Screen variant(SHD0). Else, you can achieve this by implementing a proper BAdi/Enhancement, if there is one.
    If not, you can achieve this by modification, but, it is <b>not recommended by SAP</b>.
    Please check this sample program from other thread to find BADI and enhancement for a given transaction code. You just need to create a custom program in your system by cut and paste below codes.
    REPORT ZTEST.
    TABLES: TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA: JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA: FIELD1(30).
    DATA: V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS: P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA: WA_TADIR TYPE TADIR.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    ENDCASE.
    Alternatively, you can do the following:
    1. For what ever transaction u want the enhancement .. just check for the System-->status (menu) and find out the PROGRAM name....
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for "Call Customer-function " ... and u'll get some search results .. If u get results then u have enhancement in that tcode .....
    4. Then it actually calls a Function module .... copy the Function module name .... go to SE80 (object navigator) click on "Repository Information system" then Customer Enhancements .... Give the Function module name in the "Components" field and click Execute ....
    ull get a list of Enhancements related to that Componene....
    5. Choose which ever enhancement will suit ur business need ..
    6. Go to CMOD... create a project .... assign ur enhancement ... and then code ur logic.... activate ur enhancement in CMOD ....... Ur Buisness need will be solved...
    For a user exit......
    Finding whether there is any User Exit or not for tcode VA42
    1. For what ever transaction u want the user exit .. just check for the System-->status (menu) and find out the PROGRAM name.... ( The program name would be for our scenario "SAPMV45A" )
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for the word "USEREXIT" .... u ll find all the user exits in the search result .. and find ur's then ...
    Reward points if this is helpful.
    Regards,
    Naveen.

  • Graph of Measurement points and a charecteristic vs time

    Hi SAP Masters,
    I am currently having a problem and I hope you can help me to solve this. I am trying to create a graph where I can compare one of  my Design data which is in my characteristic against the graph that i can generate from the measurement point vs time graph.
    How can I add the characteristic into this graph?
    And How does SAP know that which two column should be used for the graph? I know It can add a secondary y-axix but doesn't allow me to chose any data for that axis.
    My objective is to compare the measurement point data(movement) vs time with the design data(design movement). I can generate a column graph of movement vs time from the measurement points and I can display it over last couple of years. but if I can show design movement along with the measurement point movement then it is good for us to see if it is more than design movement stored in the classification tab of the Floc.
    thank you
    Edited by: sam1188 on Mar 16, 2011 2:24 AM
    Edited by: sam1188 on Mar 16, 2011 1:48 PM

    If you've been charged twice for the purchase (you didn't click on 'buy' twice and it appears twice on your purhcase history ?) then try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Customer service: Measuring Points&counters

    Hi,
    Can any one explain me the Use of Warranty counters, Measuring Points , Measurement Document and & reading . How are they interconnected in service processing.
    With Regards
    Aswin

    Hi,
         In case of Counter based warranty - hope u have mentioned warranty counter in config and in master warranty BGM2 while assigning the performance or time based counter , u will mention Warranty counter value , this determines the end dates/values of counters , ex :- If warranty is for 600KM , here u will mention 600KM ..,
    In IE02 u will assign this master warranty and assign the start date , if ur master warranty is correct u will get GREEN tick mark , if u click that u will find the details,
    If ur having more warranty counters, u can further maintain AND/OR relation between them.
    For performance based warranty counters u have to enter the inital reading ..& in IE02 ->Master warranty details system will show warranty counter end value .. , so if notification is created in this time system will give pop up , if ur warranty reading is 600KM then system will not give any warranty pop up ..
    Similarly for time based warranty counters also ..where system time is taken as reference ..
    regards
    pushpa

  • Measurement Point Synchronisation

    I am not getting Measurement Points on the Mobile Device.
    I have read several of the threads related to the replication of Measurement Points but have been unable to find the answer to my problem:
    I have run the Function MAM30_041 in the backend R/3 where it selects 157 Measurement Points.
    I have created a Variant in SPRO ALM_ME_GENERAL for the Measurement Points and executed RALM_ME_MEASP_FULL_DOWNLOAD_SD.
    On checking table MEREP_207 in the MI there are 35 records. However, after synchronising the mobile device, I am not getting any measurement points for the technical objects to which they are assigned.
    The technical object are available on the mobile device but no measurement points.
    The configuration for the Scenario assigned to the user has the following settings:
    Defects Recording: Defects Recording Active
    Notification Type:  Z1 (our own)
    Meas. Recording:  Measurement Recording Activated
    Help please!
    John Woodland

    Hi John,
    from your description you have two problems:
    1. Not all measurement points that are configured for replication are being replicated
    2. Equipment which is expected to have measurement points downloaded to the device does not have them.
    Problem  1 - meas. point is configured for replication but does not come to MEREP_207 table..
    The best way to understand how many meas.points are configure for replication are:
    1. Put a breakpoint in RALM_ME_MEASP_FULL_DOWNLOAD_SD before the RFC call to the middleware system and check how many meas.point keys are going to be transferred.
    2. Right after executing RALM_ME_MEASP_FULL_DOWNLOAD_SD  check how many keys are transferred in MEREP_DELTABO.
    If you see that more keys are transferred in MEREP_DELTABO that eventually make it way to MEREP_207 - that is real problem that have to be investigated and fixed. That is what I would do to investigate the reason:
    1. transaction se22 to see if there any errors
    2. figure out which meas. points were not replicated in MEREP_207 and execute BAPI MAMXX_041_getdetail on the backend for these meas.points.  Fails/error of this BAPI is the reason why meas.point was not replicated.
    Problem 2 - equipment is downloaded to the device without meas.points it references.
    There can be 2 reasons why it is being downloaded without meas.points:
    1. meas. point that this equipment references is not replicated in MEREP_207 because of the problem that was discussed before. Once you fixed the issue and all 137 meas.points are replicated, the problem with equipment will be solved as well.
    2. equipment is referencing meas.point that is not configured for replication (variant for meas.points that you configured in MAM excluded this meas. point). To figure this out: execute MAMXX_031_getdetail for the equipment in question, check that all meas. points in table "Equipment meas. points" are within meas.point variant. If not - fix the variant and fix problem 1 to ensure that all meas.points are replicated.
    Regards,
    Larissa Limarova

  • Measuring Points & Measurement Documents - What are they?

    Hi,
    What are Measuring Points and Measurement Documents?
    How are they related to an equipment?
    How do you get the Measurement reading? What is a Measurement reading?
    Can Measurement documents have many points?
    Can 1 Measuring point be assigned to many documents?
    Please help.
    Thanks,
    John

    Hi,
    What are Measuring Points and Measurement Documents?
    How are they related to an equipment?
    How do you get the Measurement reading? What is a Measurement reading?
    Can Measurement documents have many points?
    Can 1 Measuring point be assigned to many documents?
    Please help.
    Thanks,
    John

  • Function Modules for creation of characteristics and Measurement Points

    Hello everybody
    I'm new in ABAP (trainee) and especially the use of characteristics. I'd be very happy if somebody could help me :).
    Can anybody out there with some experience in creating characteristics and measurement points tell me how to create them with function-modules or by changing database tables?
    I'm happy about every hint and ready to give some reward points.
    Best Regards,
    Steffen

    FM and TABLES
    http://72.14.235.104/search?q=cache:71IXBMWcX_8J:reflexcontracts.co.uk/SAP_R3_QUICK_REF.xlsupdatetable+tse05&hl=en&ct=clnk&cd=1&gl=in
    FUNCTION MODULES
    http://www.erpgenie.com/abap/functions.htm
    http://www.sapdevelopment.co.uk/fmodules/fmssap.htm
    http://www.erpgenie.com/abap/index.htm
    http://www.geocities.com/victorav15/sapr3/abapfun.html
    Rewards if useful..........................
    Minal

  • Triggering of Preventive Maintenance based on Measuring Point

    Hi,
    I have set measuring point & defined upper range limit and lower range limit. Now I want to trigger preventive maintenance, based on reading enter against measuring point specifically if measuring point reading is above or below defined upper range limit or lower range limit.
    Letu2019s say example, If 10 and 5 is upper range limit and lower range limit, now in this case creation of notification / main order if user has enter measuring point value more than 10 or less than 5.
    Regards,
    Dipen Shroff

    Hi,
        You can do it via Condition Based Maintenance ..
    IMRC0001- U can use this User exit
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/a7/fa4c988f6611d29e8a0000e8323350/frameset.htm
    regards
    pushpa

  • Auto Update of measuring point/document

    Dear all,
    I have one issue over here.Measuring point/document is not updating automatically after productiuon order confirmation . I tried with following steps
    1) Created the equipment as test equipment -->created measuring point as a counter ---> maintain the usage value formula SAPF02 in the PRT tab . Unit of measurement for the characteristics and base unit of measure of material are same
    2) Then i have assigned this eqipment as a PRT in the routing of material .
    Which steps i am missing
    Thanks

    Hi
    I had faced the same problem  when I used SAPF02 then I did following changes.
    Created formula like SAP_09 * PRTSTD / SAP_08
    SAP_09 : Operation Qty
    PRTSTD : PRT Standard Value
    SAP_08:   Base Qty.
    Also make sure the measuring point category should me T in IK02( PRT life counter)
    Regards,
    Raj

  • Maintenance Order through Measuring Point

    Dear all,
    I want to know whether it is possible to create the maintenance order on the basis measuring point .
    I know how to create the order on the basis of measuring counter.
    Is there any procedure to create the maintenance Order through measuring point as done in case of counter?
    kindly provide the solution for Creation of Maintenance Order using Measuring Point..

    Really very thanks for the solution.
    I have one more query, we can create the measuring point using the t.code IK01.As you told we have to create the measuring point with upper and lower range.
    Is that we have to create 2 measuring point for upper as well as lower range or in one measuring point it is possible to accumulate both the upper and lower range.
    If it is possible to accumulate both the upper and lower range in one measuring point then kindly provide the procedure.
    Thanks in advance.

  • Measuring Point Status.

    Dear All Consultants,
    I have scenario for warranty services, so I define master warranty with to conditions “years - kilometer reading”.
    The problem is while assigning master warranty to equipment master system gives me this error {could not determine the status for measuring point 000000000212 at date 11.06.2007      
    Message no. BG212   } 
    Why this message appears and how to solve it.
    It is only warning message but it assume that the warranty expired.
    Waiting your kindly replay.
    yasser.

    Hi,
    Please refer the link below
    http://help.sap.com/saphelp_46c/helpdata/en/5a/3efb377409bd5ae10000009b38f889/frameset.htm
    as you might have not defined first counter.
    Enjoy SAP…
    Don’t forget to give points if its useful ans.
    Namskar
    Ketan Dave

Maybe you are looking for

  • Bug in JSF 1.2 RI using in JDev 11g

    Hi, We have found a bug in the JSF RI version used by JDev 11g TP2: In com.sun.faces.application.ApplicationImpl.createValidator, a MessageFormat is created using an erroneous pattern : created validator of type ''{0''}. This method is called by orac

  • UCCheck Showing error with XSL statement

    We are preparing to convert to Unicode and my XSL scripts are failing in UCCheck.  It appears my XSLT script (Z_EBPP_FINAL_OUTPUT_CSV) is fine, but the SAP created code behind it is failing (Z_EBPP_FINAL_OUTPUT_CSV=======XT) on the first line "<xsl:t

  • AS2 messages using VAN failed

    Hello All,         In our prod environment,  AS2 message failed in Adapter engine  with the below error ,while transmitting to VAN network. Error log in AE : MP: Exception caught with cause javax.resource.ResourceException: Fatal exception: com.sap.a

  • Prevent YouTube Widget or Snippet take you out of my site (To YouTube Site)

    I'm wondering if is there a way to prevent YouTube widget from taking me to the YouTube site in a new window when I click the clip the second time. Also is there a way to autoplay a YouTube clip on my site? Thanks for your help,

  • Any difference in the dbms and jdbc drivers btw oracle 8i lite and 9i lite

    Is there any significant difference between oracle 8i lite and oracle 9i lite in terms of database and jdbc drivers? If not, it may be better off using oracle8i.