Measuring points & counters......................,

hi everyone,
could you tell me indetail about measuring points and counters....
what is difference b/w measuring point and counter ....?
and what is the use with the measuring position and target value...
and what is the effect if we select the measpoint is counter text box at initial screen..(t.code: ik01)
plz share any information which u have..... if u dont mind
thanks in advance.....
regards,
gunnu

Hi,
Measuring Point & Counters are used to capture the Important Parameters which should be captured on periodical basis.
Measuring Position => This is Number or Description which is used to describe the Measuring Point.
Target Value => Ideal or recommended Value for that measuring point
Measuring Point is Counter => If you want to define ODO meter reading, that kind will be counter.
Please go through some of the links.
reg: measuring point creation and measuring point counter creation
Re: Counters ans measuring points
Re: Meas point & counter
Regards,
Maheswaran.
Edited by: Maheswaran.K on May 5, 2011 10:41 AM

Similar Messages

  • 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

  • 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.

  • 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

  • Measuring Points extraction

    Hi all,
    I’m trying to use the <b>PM_MEASUREMENT</b> DataSource. It works pretty well with Measuring Points linked to Functional location. However, I have some <b>Measuring Points</b> that are linked to <b>Equipments</b> and those <b>Equipments</b> have no connection to Functional <b>Location</b>. For <b>these Measuring</b> Points no data is being extracted at all.
    Is there any restriction with the DataSource PM_MEASUREMENT that makes it only to extract data for Measuring Points linked to Functional Location?
    If not, does any of you have any idea about what is going on here?
    Thank you very much,
    Claudiomar

    Thanks for your replies.
    Saurabh: High volumes of serialized products are produced that are serviceable under warranty.
    We are creating Serial Numbers for each model of the Product. We can attach Master Warranty and capture Warranty period for each Serial Number. But for creating Measuring Point / Counters, I have to generate an "Equipment Number" (via the Equipment View) for each Serial Number. If it is possible to do the same without creating Eqpt Num it will help.
    Pete: I checked that link you had shown. But in T Code IQ01, I find Serial Number is not figuring in the list "Measuring Point Object (Obj.Categ. in Gen.Status Management)" and there is no IMG set up for this.
    Request clarifications pls.
    Thanks.
    Raj

  • Equipment Efficiency through Measuring Point and Counters

    Hi gurus,
    I am planning to get the efficiency of equipment by using Meauring points and counters.
    Against an Equipment I have created a Measuring point as counter.
    I am capturing Actual output of the machine as mesurment reading.
    In order to set the Target output i dont find a solution.
    I am expecting from all you guys to give me some solution to set the Expected or standard output against an equipment.
    so that i can compare the target vs actual as well as efficiency.

    The purpose of measuring points and counters is to genrate call objects at given overflow reading or points I dont think so that they can help in calculating the effiency in a way that this machine perfomence is let say 80% and other one is 70%.
    However you can maintain it manualy while entering the measuring points in format of % .
    Regards
    Iftikhar

  • Measuring points and counters

    Hi all,
    Can anyone please tell me the process of how to use measuring points and counters and in which scenario it will be used in plant.It would be great if anyone can tell the process with an example and also how to create measuring points and counters iin SAP  as  well.
    Thanks in advance.
    Regards,
    Vijay

    Measuring points are physical and/or logical locations at which a particular condition
    is described - for example, the temperature of coolant in a nuclear power station
    after an outflow from the pressure vessels, or the number of rotations per minute of
    the rotary blades of a wind-driven power station. Measuring points are located at
    technical objects.
    Counters are resources that enable you to represent the wear and tear of an object or
    the consumption or reduction in its useful life - for example, the mileage indicator of a
    motor vehicle or the electricity consumption meter of an electrically-powered system.
    Counters are located at technical objects.
    You can enter measurement or counter readings for each object to be maintained. This
    makes sense if you want to document the condition of an object based on measurement
    readings or if the regular maintenance of an object depends on its meter readings.
    You can also check these links:
    http://www.sap-img.com/plant/recording-measuring-docs-against-work-orders.htm
    http://www.sap-img.com/plant/measuring-points-questions-in-sap-pm.htm

  • Measuring Points transfer to one total measuring point

    Hi everyone,
    We would like to transfer the values of different measuring points to one global (total) measuring points. I know that it is possible to transfer one value to n measuring points but I need the opposite.
    We habe a machine with different blades (exchangebale) and would like to summarize how many time the machine cut sheets in total.
    Is there a way to do this automatically?
    Thank you for your answers.
    Regards,
    Olivier

    Hello,
    Similar request in this thread:
    Issue in Transfer Counter Reading
    You would need custom functionality to read the various source counters then transfer the total to the main counter.
    -Paul

  • Measuring Point & Counter

    Hi PM Gurus,
    Can you tell me about the performance based maitenance :
    1. Measuring Point (M.P.)
    2.Counter
    What are the characterstic units come under the Measuring Point.is it right that only we can give upper and lower limit in M.P not in counters.Also User exit is only created for MP not for counter.
    What are the basic difference between Measuring Point & Counter.
    In both the cases is it necessary to select counter tick mark or only in case of counter ?Is there is any difference while generating the plan
    Regards,
    RC

    Hi Raju,
    You can do this through,
    IMG - Maintenance Plan,work center, task list & PRTS - Maintenance Plan - Set maintenance plan catagories.
    Here in call object column you can define which type of call object you want for your maintenance order based on this you will get the order or notification as a call object.
    And rest of the things measuring point & counter that already defined in this thread.
    Regards,
    Rip

  • Diffrence between Measuring point and Counter

    What is the difference between Measuring Point and Counter ?
    -Md

    Hi,
    _Measuring Point_
    Measuring points in the SAP System describe the physical locations at which a condition is described, (for example, Temparature and Pressure on a Boiler ). The characteristics associated with the measuring points which record the value can only be numeric characteristic. Measuring points are located on technical objects, in other words, on pieces of equipment or functional locations. For every measuring point there should be some characteristics to measure the reading.
    To enable you to differentiate more easily between the individual measuring points and provide them with a unit, you assign each measuring point to a characteristic.
    The parameters like Running Hours, Temperature, Pressure etc,, on equipments can also be mapped under measuring point.
    Counter:
    A type of measuring point, where a continuous reading is recorded (e.g. Milometer). In case the measuring point is a counter, it needs to be defined likewise.
    Counter readings are taken at counters at particular intervals and in particular measurement units.
    For Example, counter readings for kilometers driven or electricity used
    Regards,
    Krishna Mohan.

  • Usage of Measuring Point : Counter for Generating Bills

    Case : Client has a Power Generation Unit, from which it supplies power to customers. Meters installed at the customers premises are recorded by Client personnel. Bill is generated on the basis of meter reading.
    Requirement : Can Plant Maintenance : Counters be used for bill generation? How should the process be mapped?

    Hi Raju,
    You can do this through,
    IMG - Maintenance Plan,work center, task list & PRTS - Maintenance Plan - Set maintenance plan catagories.
    Here in call object column you can define which type of call object you want for your maintenance order based on this you will get the order or notification as a call object.
    And rest of the things measuring point & counter that already defined in this thread.
    Regards,
    Rip

  • Measurement point and counter SAP PM

    Hi SAP Guru
    I've one scenario in which we've to input counter reading smaller than the previous reading
    and some times bigger reading than previous reading for a single counter.
    It is because single counter is for Energy Meter which sometimes shows bigger value and sometimes shows lesser value in case of shutdown at plant.
    Please let me know asap - is it possible for a single counter to accept bigger value one time and next time smaller value ?
    We can't make two counters for a single equipment.
    Regards
    Pooja

    Try using the counter as a measurement point.   Unclick the box measurement point is a counter and set the upper and lower tolerance settings on the details page.  The meter is not a counter but a gage.  as long as the gage reads between the upper and lower tolerances you are good.     If the gage reads out of tolerance designate a warning or an error.  You can also set it up through a user exit to produce a notification or a work order for out of tolerance readings.  See Condition Based Maintenance. -Rich

  • 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

Maybe you are looking for