Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

PO Header

Former Member
0 Likes
334

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

1 REPLY 1
Read only

Former Member
0 Likes
313

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