on ‎2011 Mar 15 1:26 PM
Hi ,
We have a requirement to change the text for 'SAVED' status of PO. We want it to be changed to 'HELD' .
Also on the PO creation screen , there is a button 'SAVE' to save the PO. We want to change the text of button to HOLD.
Any pointers on how this can be achieved ?
Thx-
Harmeet.
Request clarification before answering.
To change the label for the "save" button for PO, you can enhance the following:
Web dynpro component: FPM_OIF_COMPONENT
Component configuration: /SAPSRM/WDCC_FPM_OIF_PO_PURCH
Label attribute for button: Save
But to change the text for a status you might need to consider more. There are several places where the status is showing up, e.g. POWL active query, query result, PO application top panel, PO application "Tracking" tab, etc. You would also have to consider the consistency of status display among different document types, such as Shopping Cart, PO Response, Confirmation, when they line up in POWL. Do you really want PO to say "Held" while others say "Saved"?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One of the most promising places I can think of is the following class/method where you can enhance to change the text for status I1009 from SAVED to HELD:
Class: /SAPSRM/CL_PDO_STATUS_HLPR
Method: /SAPSRM/IF_PDO_STATUS_HLPR~GET_HEADER_STATUS_BYGUID
This would at least fix your PO status on POWL search result.
Hi JY,
I figured out that the actual status in SRM backend for 'Saved' PO's is 'Held' . I found this in TJ02T table. Even when I check the status of a 'Saved' PO in BBP_PD , it displays the status as 'HELD'. However on the portal, the status is saved.
Can you think of a config using which the display characteristic of status is also changed from 'Saved' to 'Held' ?
Thanks
Can you think of a config using which the display characteristic of status is also changed from 'Saved' to 'Held' ?
No. My understanding is that there is no configuration that centrally controls the status text. Worse, those status appear in different places might be controlled by different programs. So you would have to individually change them. One of the places is mentioned in my previous post.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.