2007 Aug 06 10:48 AM
hi all
We have done a Check in ME22N such a way that no modification is possible unless the release strategy is revoked, but even for that check we can change the Header Text and save the PO.
I want to any BADI / EXIT is there to supress the Header Text in ME22N. Our Version is SAP 4.7
regards
Gibi Philip
hi all
We have done a Check in ME22N such a way that no modification is possible unless the release strategy is revoked, but even for that check we can change the Header Text and save the PO.
I want to any BADI / EXIT is there to supress the Header Text in ME22N. Our Version is SAP 4.7
regards
Gibi Philip
2007 Aug 06 10:58 AM
Hi,
Use the following FM's :
EDIT_TEXT or SAVE_TEXT
To know the input parameters of those FM, go in the text, in plain page mode, then do, via the menu, GoTo -> Header .
Here you get the needed info ( ID, Name, ... )
U have to use the FM like this.
CALL FUNCTION 'SAVE_TEXT'
EXPORTING
header = po_head
INSERT = ' '
savemode_direct = 'X'
OWNER_SPECIFIED = ' '
IMPORTING
FUNCTION =
newheader = po_head
TABLES
lines = pt_lines
EXCEPTIONS
id = 1
language = 2
name = 3
object = 4
OTHERS = 5.
Regards
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |