SET PF-STATUS 'GRAF'
G'Day,
Any of you Guys know what the heck: SET PF-STATUS 'GRAF' does? I've shoved in a piece of code where it is used:
DATA: BEGIN OF DATA OCCURS 1,
TEXT(25),
VALUE1 TYPE P,
VALUE2 TYPE P,
VALUE3 TYPE P,
VALUE4 TYPE P,
END OF DATA.
SET PF-STATUS 'GRAF'.
Data: TEXT1(20),
Num(7) type N,
count type I value '0',
even type I value '0',
width type I value '97'
Cheers.
If you have an ABAP manual look at MENU PAINTER.
With menu painter you set menu options, pushbuttons, etc for an SAP screen.
SET PF-STATUS 'GRAF' will select the status 'GRAF' and assign whatever pushbuttons and menu options have been defined in that status.
Hope this helps.
You can visualize this if you double click on 'GRAF'.
Cheers Guys!
I owe ya!