Plz explain use of  MeasPoints & counters and counter based MaintenancePlan

Hi!
My dear PM Gurus
Can any body explain how to create the measuring points and counters and detailed steps
to create a counter based, performance based and condition based maintenance plans, plz.
Regards
MDSFR

Hi
Create the measuring point for the equipment in IK01. Before you need to create the characteristics for the measuring point in CT04.
For the Maintenance plans, pls find link below from SAP help
http://help.sap.com/saphelp_erp60_sp/helpdata/en/f9/548ab8cdeb11d1950e00a0c93029cf/frameset.htm
Sachin

Similar Messages

  • Total count and count based on column value

    Primaryid  Id     Status
    1            50          1
    2            50          1
    3          50          1
    4            50          3
    5           50          2
    6            50          1
    7            51         1
    8            51         2Im looking for a query which returns total count of rows for id 50 and count of rows with status 1
    something like
    Id    count_total   count_total_status1
    50        6              4
    51        2              1Any suggestion ?

    SQL> select * from t4;
    PID ID STATUS
    1 50 1
    2 50 1
    3 50 1
    4 50 3
    5 50 2
    6 50 1
    7 51 1
    8 51 2
    已选择8行。
    SQL> select distinct id,count(id),sum(decode(status,1,1,0)) from t4 group by id;
    ID COUNT(ID) SUM(DECODE(STATUS,1,1,0))
    51 2 1
    50 6 4

  • I hav an 8gb iPod iPod touch 4 and according to settings I've got 2.6gb of memory left. However I've tried to download apps which are way smaller than that but it keeps popping up saying not enough memory! Plz explain wats goin on

    I hav an 8gb iPod iPod touch 4 and according to settings I've got 2.6gb of memory left. However I've tried to download apps which are way smaller than that but it keeps popping up saying not enough memory! Plz explain wats goin on

    Top download and install apps you need space available on the iPod equal to about three time the file download size.  If you download more than one app at a time you need about three times the total file download size available so it is better if short on storage to purchase one at a time.

  • MAM - Counters and Measures for Operator Rounds

    Hi everyone,
    I would like to use MAM's Counters and Measures delivered functionality for our Operator Rounds.  This would involve going out and analyzing equipment's or FL's and entering their measurements as per their measurement list.  We also hope it will flag when the entry is out of range and thus would trigger a PM Notification.  I have turned on everything with MAM except for counters and measures at this time.
    Is anyone considering using the MAM solution for their Operator Rounds or day-to-day checklists?
    I apologize if this question is too speceific and does not relate to your industry.  We are just having a hard time finding anyone who does this using SAP.....without going 3rd party.
    Thank you.

    Joanna,
       It would help if you could explain your complete settings and the process that you have followed.
       If you are referring to inspection rounds generated through maintenance plan or task list directly associated to the order for preventive maintenance,The technical objects are only copied to the order when the enhanced object list functions (OPROL) are inactive (see Customizing under Define Notification and Order Integration).  In Other scenario the enhanced object list function should be active.
    Regards
    Narasimhan

  • Period and Plant based planning.

    Hi guys, can you explain the difference between period and plant based planning?

    Kunal,
    It is unclear to me what you mean by "Plant based" planning, unless you are talking about the calendar I use to manage my garden.  Please elaborate. 
    Period Based planning is planning which uses time buckets rather than exact times.
    http://help.sap.com/saphelp_scm70/helpdata/EN/47/fe0fb12498662fe10000000a42189b/frameset.htm
    Best Regards,
    DB49

  • Plz  explain why concatenate statement is used in BDC

    Please do not post subject or content as ALL CAPITALS
    hi friends,
                    for the first time i am doing bdc table control.  i just cant make out the use of concatenate statement in that code.  i have gone thru some bdc table control codes in the forum but almost everywhere the concatenate statement has been used.  can u plz explain the use of that statement . THANKS IN ADVANCE.   
    eg:  THIS IS A CODE FROM ONE OF THE FORUM POSTS, SO I AM NOT COPYING IT FULLY.
         I HAVE HIGHLIGHTED THE  CONCATENATE PART.
    DATA : M(2) TYPE C,
    N(2) TYPE C,
    TEMP(50) TYPE C,
    WA_KUNNR LIKE KNA1-KUNNR.
    ****POPULATING HEADER DATA *******
    LOOP AT IT_HEADER INTO WA_HEADER.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    INPUT = WA_HEADER-KUNNR
    IMPORTING
    OUTPUT = WA_HEADER-KUNNR
    SELECT SINGLE KUNNR FROM KNA1 INTO WA_KUNNR WHERE KUNNR = WA_HEADER-KUNNR.
    IF SY-SUBRC 0.
    MESSAGE I004(ZZS_MSG).
    ENDIF.
    PERFORM BDC_DYNPRO USING 'SAPMV45A' '0101'.
    PERFORM BDC_FIELD USING 'BDC_CURSOR'
    'VBAK-SPART'.
    PERFORM BDC_FIELD USING 'BDC_OKCODE'
    '/00'.
    PERFORM BDC_FIELD USING 'VBAK-AUART' WA_HEADER-AUART.
    PERFORM BDC_FIELD USING 'VBAK-VKORG' WA_HEADER-VKORG.
    PERFORM BDC_FIELD USING 'VBAK-VTWEG' WA_HEADER-VTWEG.
    PERFORM BDC_FIELD USING 'VBAK-SPART' WA_HEADER-SPART.
    PERFORM BDC_DYNPRO USING 'SAPMV45A' '4001'.
    PERFORM BDC_FIELD USING 'BDC_OKCODE'
    '/00'.
    PERFORM BDC_FIELD USING 'VBKD-BSTKD' WA_HEADER-BSTKD.
    PERFORM BDC_FIELD USING 'KUAGV-KUNNR' WA_HEADER-KUNNR.
    PERFORM BDC_FIELD USING 'KUWEV-KUNNR' WA_HEADER-KUNNR1.
    PERFORM BDC_FIELD USING 'RV45A-KETDAT'
    '21.10.2008'.
    PERFORM BDC_FIELD USING 'RV45A-KPRGBZ'
    'D'.
    PERFORM BDC_FIELD USING 'VBKD-PRSDT'
    '21.10.2008'.
    **********ITEM LOOP TO FIND NO.OF ITEMS ************
    M = 0.
    LOOP AT IT_ITEMS INTO WA_ITEMS WHERE BSTKD = WA_HEADER-BSTKD.
    M = M + 1
    ENDLOOP.
    CONCATENATE 'VBAP-PS_PSP_PNR(' M ')' INTO TEMP.
    PERFORM BDC_FIELD USING 'BDC_CURSOR' TEMP.
    CLEAR TEMP.
    ******POPULATING ITEMS DATA ********
    N = 1.
    LOOP AT IT_ITEMS INTO WA_ITEMS WHERE BSTKD = WA_HEADER-BSTKD.
    CONCATENATE 'RV45A-MABNR(' N ')' INTO TEMP.
    PERFORM BDC_FIELD USING TEMP WA_ITEMS-MABNR.
    CLEAR TEMP.
    CONCATENATE 'RV45A-KWMENG(' N ')' INTO TEMP.PERFORM BDC_FIELD USING TEMP WA_ITEMS-KWMENG.
    CLEAR TEMP.
    CONCATENATE 'VBAP-PS_PSP_PNR(' N ')' INTO TEMP.
    PERFORM BDC_FIELD USING TEMP WA_ITEMS-WBS.
    CLEAR TEMP.
    N = N + 1.
    ENDLOOP.
    PERFORM BDC_DYNPRO USING 'SAPMV45A' '4001'.
    PERFORM BDC_FIELD USING 'BDC_OKCODE'
    '/00'.
    PERFORM BDC_FIELD USING 'VBKD-BSTKD' WA_HEADER-BSTKD.
    PERFORM BDC_FIELD USING 'KUAGV-KUNNR' WA_HEADER-KUNNR.
    PERFORM BDC_FIELD USING 'KUWEV-KUNNR' WA_HEADER-KUNNR1.
    PERFORM BDC_FIELD USING 'RV45A-KETDAT'
    '21.10.2008'.
    PERFORM BDC_FIELD USING 'RV45A-KPRGBZ'
    'D'.
    PERFORM BDC_FIELD USING 'VBKD-PRSDT'
    '21.10.2008'.
    PERFORM BDC_FIELD USING 'VBKD-ZTERM'
    'N30'.
    PERFORM BDC_FIELD USING 'VBKD-INCO1'
    'FOB'.
    PERFORM BDC_FIELD USING 'VBKD-INCO2'
    'NEW YORK'.
    PERFORM BDC_FIELD USING 'BDC_CURSOR'
    'RV45A-MABNR(02)'.
    PERFORM BDC_DYNPRO USING 'SAPMV45A' '4001'.
    PERFORM BDC_FIELD USING 'BDC_OKCODE'
    '=PKO1'.
    PERFORM BDC_FIELD USING 'VBKD-BSTKD' WA_HEADER-BSTKD.
    PERFORM BDC_FIELD USING 'KUAGV-KUNNR' WA_HEADER-KUNNR.
    PERFORM BDC_FIELD USING 'KUWEV-KUNNR' WA_HEADER-KUNNR1.
    PERFORM BDC_FIELD USING 'RV45A-KETDAT'
    '21.10.2008'.
    PERFORM BDC_FIELD USING 'RV45A-KPRGBZ'
    'D'.
    PERFORM BDC_FIELD USING 'VBKD-PRSDT'
    '21.10.2008'.
    PERFORM BDC_FIELD USING 'VBKD-ZTERM'
    'N30'.
    PERFORM BDC_FIELD USING 'VBKD-INCO1'
    'FOB'.
    PERFORM BDC_FIELD USING 'VBKD-INCO2'
    'NEW YORK'.
    PERFORM BDC_FIELD USING 'BDC_CURSOR'
    'VBAP-POSNR(01)'.
    PERFORM BDC_FIELD USING 'RV45A-VBAP_SELKZ(01)'
    'X'.
    LOOP AT IT_ITEMS INTO WA_ITEMS WHERE BSTKD = WA_HEADER-BSTKD.
    PERFORM BDC_DYNPRO USING 'SAPMV45A' '5003'.
    PERFORM BDC_FIELD USING 'BDC_OKCODE'
    '/00'.
    PERFORM BDC_FIELD USING 'BDC_CURSOR'
    'KOMV-KBETR(07)'.
    PERFORM BDC_FIELD USING 'KOMV-KSCHL(07)' WA_ITEMS-KSCHL.
    PERFORM BDC_FIELD USING 'KOMV-KBETR(07)' WA_ITEMS-KBETR.
    PERFORM BDC_DYNPRO USING 'SAPMV45A' '5003'.
    PERFORM BDC_FIELD USING 'BDC_OKCODE'
    '=POS+'.
    PERFORM BDC_FIELD USING 'BDC_CURSOR'
    'KOMV-KSCHL(08)'.
    ENDLOOP.
    PERFORM BDC_DYNPRO USING 'SAPMV45A' '5003'.
    PERFORM BDC_FIELD USING 'BDC_OKCODE'
    '/EBACK'.
    PERFORM BDC_FIELD USING 'BDC_CURSOR'
    'KOMV-KSCHL(08)'.
    PERFORM BDC_DYNPRO USING 'SAPMV45A' '4001'.
    PERFORM BDC_FIELD USING 'BDC_OKCODE'
    '=SICH'.
    CALL TRANSACTION 'VA01' USING IT_BDCDATA MODE 'A'.
    REFRESH IT_BDCDATA.
    ENDLOOP.
    u2022     Start new screen *
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
    CLEAR WA_BDCDATA.
    WA_BDCDATA-PROGRAM = PROGRAM.
    WA_BDCDATA-DYNPRO = DYNPRO.
    WA_BDCDATA-DYNBEGIN = 'X'.
    APPEND WA_BDCDATA TO IT_BDCDATA.
    ENDFORM. "BDC_DYNPRO
    u2022     Insert field *
    FORM BDC_FIELD USING FNAM FVAL.
    IF FVAL SPACE.
    CLEAR WA_BDCDATA.
    WA_BDCDATA-FNAM = FNAM.
    WA_BDCDATA-FVAL = FVAL.
    APPEND WA_BDCDATA TO IT_BDCDATA.
    ENDIF.
    ENDFORM. "BDC_FIELD
    Edited by: Matt on Mar 9, 2009 4:38 PM

    Every input/output field on the screen has its own name.(for example: RV45A-KETDAT)
    PERFORM BDC_FIELD USING 'RV45A-KETDAT' '21.10.2008'.
    means fill the date '21.10.2008' into the screen field 'RV45A-KETDAT'.
    CONCATENATE 'RV45A-MABNR(' N ')' INTO TEMP.
    PERFORM BDC_FIELD USING TEMP WA_ITEMS-MABNR.
    There are some special input fields on the screen (table control). In fact, it's a table.
    RV45A-MABNR
    RV45A-KWMENG
    other fields...
    RV45A-MABNR(01)
    RV45A-KWMENG(01)
    RV45A-MABNR(02)
    RV45A-KWMENG(02)
    RV45A-MABNR(..)
    RV45A-KWMENG(..)
    RV45A-MABNR(N)
    RV45A-KWMENG(N)
    so, the code means fill the values line by line.
    and, I recommend you to learn more basic knowledge of dynpro.

  • What is commitment item in sap ps, why do we use it , plz explain...thankx in advance

    what is commitment item in sap ps, why do we use it , plz explain...thankx in advance

    Hi
    Commitment item is a term used in FM module.
    It is by the way of Commitment item cost is posted and budget check is occurred in FM (Fund centers)
    Google it to understand it in detail.
    Regards
    Saurabh

  • What is the use of OR and AND functions in counter based maint plan

    Hi
    I want to create a counter based maintenance plan...
    I entered the measurement reading for the counter, reading is 4000 hrs
    IN IP43
    I created the counter plan with cycle as 6000 hrs. Once the document reaches 6000 order will be created. While creating the maintenance plan, in the maintenance schedule parameters, i check there is OR and AND functions avaliable...
    I know the basic use of both the functions..
    But what is the significance in the maintenance plan....
    Will it give any effect, between the schedule date and measurement docu entries...
    Since i need to maintain like... once the counter reaches 6000 hrs only order should be created.. it should not create once the date as been reached... since due to present condition, i am not running the DG....
    Give ur inputs
    - Pithan

    Hi
    Thank you for your reply
    As you said...
    If you want order to be created only after certain Hrs to be reached to cycle value then you may opt for single cycle or strategy cycle
    can u explain how to do it...
    In single cycle or stratergy... if u schedule the plan itself, the dates will be populated.. it will calculate with respect to the annual reading we have entered in the measurement document...
    My DG overhaul to be taken in every 6000 hrs... i create a plan... i have given the annual reading as 8000 hrs... if i schedule the plan for 5 yrs... wat will be the call objects...
    Then i am running the DG for 3 hours a day... my annual running hrs will be 1000 hours.. but my order will be released since it has crossed the dates...
    how to control... is it possible to do it in IP43 with multiple counter...
    How to do this ?
    Cna u explain
    - Pithan

  • How to count number of edges using PXIe-6363 Counters

    Hello,
    I am trying to count number of edges in a test signal in a 50 ms duration. I am using PXIe-6363 card and connecting the test signal to CTR 0 SRC (PFI 8). Is it a correct connection? What else do I need hardware-wise to make a correct set up for this application?
    Thanks
    Jeet
    Solved!
    Go to Solution.

    Hi Jeet,
    When you say interrupt signal, do you mean a pulse that will pause your counter task? If that is the case, and you want to pause your task with a digital pulse, you need to use the DAQmx Trigger Property Node and set that to Pause, Trigger Type. As you said, you can connect that signal coming from the chip to any PFI line and then set that line as the source of the property node.
    There is an example that you can use that does exactly what I just described. This example is called Count Digital Events-Pause Trig.vi, and you can find it by going to Help>Find Examples..., then on the NI Example Finder window go to the Browse tab and navigate in the folders to Hardware Input and Outpout\DAQmx\Counter Measurements\Count Digital Events.
    Regards.
    Jorge
    Applications Engineer
    National Instruments
    Certified LabVIEW Associate Developer (CLAD)

  • Can anyone explain why my Dell laptop and my iphone can "see" a server in Luton when using a wireless broadband (I get 20 Mbps download speed) but my ipad can not see this server and finds one in Milton Keynes which gives me 0.37 download speed.

    Can anyone explain why my Dell laptop and my iphone can "see" a server in Luton when using a wireless broadband (I get 20 Mbps download speed) but my ipad can not see this server and finds one in Milton Keynes which gives me 0.37 download speed.

    Can anyone explain why my Dell laptop and my iphone can "see" a server in Luton when using a wireless broadband (I get 20 Mbps download speed) but my ipad can not see this server and finds one in Milton Keynes which gives me 0.37 download speed.

  • Using DISTINCT and COUNT together.

    So I have a query which I dicovered is not quite working as planned.
    SELECT DISTINCT NULL LINK,
           TO_CHAR(MONTHS_,'YYYY-MM') DATIME,
           sum(decode(CMS.CMS_NODE_OS.OS_TYPE,'Linux','1',0))"Linux" FROM
      ( SELECT ADD_MONTHS(TRUNC(to_date('28-FEB-2013','DD-MON-YYYY'),'MM'),-ROWNUM + 1) MONTHS_ FROM DUAL CONNECT BY LEVEL <=
      (SELECT CEIL( MONTHS_BETWEEN(to_date('28-FEB-2013','DD-MON-YYYY'),TO_DATE('01-FEB-2013','DD-MON-YYYY'))) FROM DUAL) )
    THE_TIMELINE
      LEFT JOIN CMS.CMS_NODE ON ( MONTHS_ BETWEEN CREATE_DT AND LAST_DAY(NVL(RETIRE_DT,MONTHS_)))
      LEFT JOIN CMS.CMS_NODE_OS ON CMS.CMS_NODE.NODE_NAME=CMS.CMS_NODE_OS.NODE_NAME
      WHERE CMS.CMS_NODE.NODE_ENV<>'Alias' and CMS.CMS_NODE_OS.OS_TYPE='Linux' GROUP BY (TO_CHAR(MONTHS_,'YYYY-MM')) ORDER BY DATIMEThe issue that I'm having is that on the LEFT JOIN of the CMS_NODE_OS table that there a mulitple join records. I just want to have one joined. because of the GROUP and SUM the DISTINCT is rendered null and void.(returns 961) when it should be like (737) records.
    How can I just link one CMS_NODE_OS record per CMS_NODE record...

    Hi,
    bostonmacosx wrote:
    ... The issue that I'm having is that on the LEFT JOIN of the CMS_NODE_OS table that there a mulitple join records. I just want to have one joined. because of the GROUP and SUM the DISTINCT is rendered null and void.(returns 961) when it should be like (737) records.That sounds like a Chasm Trap .
    How can I just link one CMS_NODE_OS record per CMS_NODE record...Which one?
    If you can write an ORDER BY clause that would put that row first, then you can use the analytic ROW_NUMBER function. Instead of joining to CMS_NODE_OS, join to a sub-query that has the relevant columns from CMS_NODE_OS, as well as ROW_NUMBER (let's call that column r_num). Include "AND r_num = 1" in the join condition.
    That's just one way to deal with a chasm trap. Depending on your data and your requirements, there may be better ways.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ {message:id=9360002}
    You'll get better answers faster if you always supply this information whenever you post a question.

  • Hey plz help me out!!  i am using macbook pro 10.5.8..... and was using photobooth...and then after some time i opened it and there was no green light on cam, and it displayed nothing! plz tell me how to fix it! i want to see my face again!!! plz help me

    hey plz help me out!!  i am using macbook pro 10.5.8..... and was using photobooth...and then after some time i opened it and there was no green light on cam, and it displayed nothing! plz tell me how to fix it! i want to see my face again!!! plz help me

    iSight troubleshooting
    http://support.apple.com/kb/HT2090

  • HT201210 every time i want to update my phone,  i see an alart message saying that the firmware file is corrupted...what do i do now....i am using 5.1.1 and it is jailbroked.......i face the same problem while restoring......plz help.....TOUFIQ

    every time i want to update my phone,  i see an alart message saying that the firmware file is corrupted...what do i do now....i am using 5.1.1 and it is jailbroked.......i face the same problem while restoring......plz help.....TOUFIQ

    Jailbroken phoned are not supported here. Anything could be wrong with it - it is jailbroken.

  • Make frequency response analyser using frequency generator and counter

    Hello
    Can we make a frequency response analyser using a Frequency generator and frequency counter?
    How to add modulation with it? Modulation frequency is to be varied as per the input to given to the carrier!
    The outputs are Frequency, magnitude, and the phase as like solartron FRA.
    somebody have an Idea for this
    awaiting for the solution 
    thank you 
    "Thanks with regards "
    by
    ..........Gireesh..........

    Hello Gireesh,
    You can use a function generator to generate frequencies and use the modulation tollkit and other tools availabe with LabVIEW to do the modulation part . Or you can use the analog output ports on the daq card to generate different frequency signals for the same purpose .This should pretty much serve your purpose.
    http://zone.ni.com/devzone/cda/epd/p/id/5646
    http://digital.ni.com/manuals.nsf/websearch/AF3615F31CE9656C862576070020B8F7

  • HT1222 Can someone explain why the Safari 5.1.7 update seven times and counting?

      The latest Safari 5.1.7 update seven times and counting?  Is this required or is there something else a foot?
    Tomez

    Doublechecking before proceeding. Do you mean that your Apple Software Update keeps offering you the Safari update? Or is something different going on?
    Which version of Safari are you currently running? For example, when I go "Help > About Safari", I see:

Maybe you are looking for

  • Web fonts not showing up correctly in safari

    Hi, It seems that this is getting worse, but I'm finding ALOT of sites where Safari doesn't render web fonts correctly. They work fine in Firefox, but Safari is my default browser. Is there a trick to fixing this? I can even copy out the text, paste

  • Intel based Imac, display problems

    My son has played around with the IMAC today, and now the screen is all black. i have tried to safeboot, change display settings but nothing seems to work. In the display settings I cannot touch the refresh rate anymore either which to me looks stran

  • What is meant by 'Business Area'

    Hi all what is meant by 'Business Area' in discoverer? Because i have installed BI Tools Discoverer Admin and Desktop but unable to figure out what Business Area atcually is!!!! Thanks in advance Regards

  • Error starting at line 1 in command

    Hi, Here is the log from Sql developer http://dl.dropbox.com/u/40211031/log4.txt but when directly running the same scripts, I got no problems Edited by: Hua Min on Mar 20, 2012 9:32 AM

  • IPhoto/Mountain Lion Desktop Settings

    Hey there, This is kind of a simple but convoluted question: I'm running the latest Mountain Lion on a MacBook Pro (I'd give more info but I don't think it's relevant in this case): I'm running the latest iPhoto and I have several databases/libraries