It worked! Thank you very much!!
Re: SAP MRS Resource Planning Nodes in DPD Gantt
Re: Auto create SES in maintenance order
Dear Pardhu,
Thanks for your valuable input, now its got solved,
Please close this thread
Regards
Prasanta
Re: SAP PM implementation in thermal Power plant
Dear,
BBP is heart of implementation, so you need to set all the key input data as per your business.
As you have put your requirement,i can say treat all the below things as Functional locations
1) AFBC boiler- 1 no, 2) WHRB boilers- 4 nos, 3) Turbo generator set- 1 no, 4) ESP, 5) Cooling Tower, 6) Coal Handling Plant, 7) Ash Handling Plant, 8) Water treatment plant etc.
Here you need categories the functional locations as per functionality.When it comes to equipment you can treat the equipment categories as per department with different numbering assignment.So that it would be easy for each department to identify their series of equipments by the number itself
For departments, you can treat all as planner groups.
For all technicians you can treat as Main Work centers. As per your shift sequence, we can treat it as continuous process.
Based on your maintenance activities categories the notification types like general,breakdown,etc...
And for maintenance create different types of maintenance order types as per your business criteria as you mentioned above.
For shutdown ,instead of creating new order type you can use SAP-PM functionality called REVISION.Where with this for all maintenance orders during shutdown assign REVISION in header tab.This helps Engineering and process department to have number of planned and stoppage shutdowns and their cost with respect to REVISION number.
To track all manpower related things if you can proceed with "Activity Type" costing.Where your controlling person will crate secondary cost elements for this and you need to have assignment of cost centers in MAIN WORKCENTERs as per activity types.
You have standard MIS reports in SAP-PM and transactional reports so you can set up those reports based on periods in selection screen with variants.
Regards,
Pardhu
Re: Auto create SES in maintenance order
Dear,
Thread will be closed by the person who raised the concern.Hope you can close the thread.
Regards,
Pardhu
Re: SAP PM implementation in thermal Power plant
Hello DINESH,
This subject was discussed earlier too at lengths. You will find useful points in these discussions. I'm giving these links.
Advantages of PM in Power Plants
How to define Plant in SAP EAM module?
pp scenerio in thermal power plant
Good luck
KJogeswaraRao
Regarding equipment display
Dear Experts,
In Breakdown analysis report (mci7) equipments are displayed in plant section wise (L02) in quality server.But when i execute the same report in prd server equipments are not displayed in plant section wise(L02).
Please guide me to solve this issue.
Regards
Prashantha
Re: Regarding equipment display
Go though this link to verify whether we are missing some thing to build Breakdown statistics in PRD:What are the prerequisite for getting MTTR / MTBR data.
Also you may have to build info structure S070 through OLPM: Issue in MCI7 report - S070 LIS Rebuild. Before going for this step verify the other MIS tcode MCJB for these equipments
These are some possible tools to investigate and act accordingly. With present information, it is difficult to pin-point the reason. Let's hope we arrive at the cause soon.
Good luck
KJogeswaraRao
Re: Current Stock in Equipment BOM
Sir,
In our system Maintenance plant and Stores are maintained as different plants. BOM is done in Maintenance plant but stores transactions are done in engg stores plant. Screen is getting directed to mmbe for maintenance plant and not stores where hte stock is maintained.
Clearing of Work Permit
Work permits are closed by the issuing authority after accessing the site conditions are safe to operate. In our plant the maintenance team after the job is over signs the hard copy of the permit and hands it over to the operation team saying the job is over and the plant can be started. but in system there is no provision to say that the job is over and the hard copy is handed over to the operations team
Kindly help
Re: Current Stock in Equipment BOM
Hi Praneet,
Check in MD04..............
Re: Clearing of Work Permit
Hi Praneet,
Maintenance Team need to do the Technical complete (TECO) which is the way saying to operation the work is completed and the system is ready to start.
Also Permit has a option to confirm whether at release or at Technically complete the order. In your case if you set the permit at Technically complete the status, then maintenance team / manager has to approve the permit and Technically complete the work order.
Regards
Terence
Re: Standard report for Functional location Characteristics
Hello JK,
Use Tcode IL05, IE05 for F/Locn and Equipments respectively. Give Class Type and Class in the Selection screen. and in the ALV output go to Settings > Show/Hide classification. The Characteristics and values are added to the Report. See this picture (IE05 ALV).
This is true for IL05 also (Functional Location).
Regards
KJogeswaraRao
Popup screen in IW21
Dear all,
I have couple of requirements in notification screen. Wondering if I can get some help.
Requirement 1 - Custom Subscreen
I followed Jogeswara Rao's document to create subscreens. But my requirement is, the subscreen must be enabled only if the Notification type is T2 and ONLY if the User Status in "XXXX" and there will be only on Text are and that has be mandatory field.
Requirement 2 - Popup screen
After the notification is created, if the user changes the End date, then a pop up screen must appear for the user to enter the reason for the change in date. The text has to be stored (which I'll retrieve and use it for my reporting purpose)
Can anyone shed some lights on this requirements? Appreciate your help and assistance.
Thanks,
Justin.
Re: Is there any way to change early start date on WO without going into the operations date tab?
Hi Terry,
The customizing path for doing the above setting for notification is: Plant Maintenance and Customer Service>Maintenance and Service Processing>Maintenance and Service Notifications>Notification Processing>Object Information>Define Object Information Keys
After this you just need to assign the object information key to notification and/or order type.
Note- In configuration check automatic so it will get pop uped when you create any notification/order for Object in question.
Rgds
Sunil
Re: Popup screen in IW21
Hello Justin,
Obviously these are advanced ABAP requirements, the answers for which might not fully answered in this space.
Requirement 1:
Notification type is T2 only
is already addressed because sub-screens are configured for Notification types only.
ONLY if the User Status in "XXXX" and there will be only on Text are and that has be mandatory field.
Though the underlined part is difficult to understand, I'll try to answer the rest.
Study the following code in PBO of the sub-screen (here it is 102):
MODULE STATUS_0102 OUTPUT.
* SET PF-STATUS 'xxxxxxxx'.
* SET TITLEBAR 'xxx'.
IF VIQMEL-BEBER = 'L'.
LOOP AT SCREEN.
IF SCREEN-GROUP1 = '001'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDIF.
IF SCREEN-name CS 'viqmel-zz_stdt' or SCREEN-name CS 'viqmel-zz_sttm' or SCREEN-name CS 'viqmel-zz_endt' or SCREEN-name CS 'viqmel-zz_entm'.
SCREEN-active = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.
ENDMODULE. " STATUS_0102 OUTPUT
This code does exactly similar to your requirement. But the condition here is plant section value = 'L'. So in the beginning of the code, you have to add a code to retrieve user status TXT04 value using tables VIQMEL, TJ02T, TJ02T OR using a function module such as 'STATUS_READ' etc and then start the code with that IF condition.
Note:
This being very old code with me (presently not in use), can not be explained now about exact behaviour. But is meant for same purpose. You need to test this and understand it. There is a SCREEN-GROUP1 field in the code. You need to maintain the SCREEN-GROUP value in the screen- painter of the sub-screen for all the Z-fields of the screen area.
The possibility of dynamically disappearing of the screen area in the Notification, the moment you change the user status, is to be ascertained. (I doubt that).
----------------------------------------------------------------------------------------------------------------------------
Requirement 2:
If the user changes the End date
This can be managed with user-exit QQMA0014 by retrieving the existing End date (LTRMN) from the table VIQMEL into a local variable say LV_LTRMN using the Notification number (I_VIQMEL-QMNMU), and comparing it with the value of I_VIQMEL-LTRMN (changed End date value).
If this does not match, you code will call a pop-screen previously designed by you as per your requirement of a field with CHAR40 or more. Your code will be INSERT ing / UPDATE ing this value into a previously create Z-Table which will have atleast 2 fields, QMNUM and the Zfield to store the Reason for change.
This is looks a smoother one.
-----------------------------------------------------------------------------------------------------------------------------------
Anything beyond these lines, you might need to take help of expert ABAPers.
Regards
KJogeswaraRao
Re: Clearing of Work Permit
what about permits made without orders?
Re: Clearing of Work Permit
Hi Praneet,
I guess you need to go for Work Clearance Management, which can be created with / without work order.
Regards
Terence
Integration of Fleet management with Procurement
Dear SAP friends,
I working with integration of procurement (Assets Management) and service processes with fleet Mangagement.
I need some basic flow for integration.
1). How do I maintain catalog for fleet details for vehicles like value, supplier and decoration and component specifications.
2) How do I maintain Equipment master for Vehicles, trucks and cars. Is there any configuration and maintainance guide.
3) For procurement how Pr is generated for chasis, body & decoration and how to calculate budget cost or unbudget cost?. (like Asset / Internal order.
4) How Fleet number is generated and details captured?.
I would like to have inputs on these.
Thanks
M Arif
Re: Popup screen in IW21
Hello Jogeswar,
Thank you so much for your detailed explanation. I'll go ahead and implement the changes and close the thread if there are no more questions. Sincerely appreciate your guidance.
-Justin.
Sub-operation CNF in PM order
In PM order there r one main operation with number of sub operations. Can PM order CNF with confirmation of main operation only..?