cancel
Showing results for 
Search instead for 
Did you mean: 

hi to all

Former Member
0 Kudos

hi,

can anyone tell about the what are the ways to creat screens and pf-status...process in brief..

raju

Accepted Solutions (1)

Accepted Solutions (1)

Vinod_Chandran
Active Contributor
0 Kudos

Hi Raju,

1. From the program you can code like CALL SCREEN 9000 and then double click on the screen number 9000 to create it. For pf status it is SET PF-STATUS 9000.

2. From SE80, display the program so that you can see all the components of the program on the left side. Click the right mouse button and select the menu to create screen or pf-status.

3. Use transaction SE51 for creating screens and SE41 for pf-status.

Cheers

Vinod

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi

To create a screen you should use the trx SE51 (screen painter)and trx SE41 for status.

Anyway you can go to those transaction from all abap transactions (se38, se80,.....).

For example if you write CALL SCREEN 9000 and do a doubleclick on 9000 the system take you to SE51 and if screen doesn't exist, it ask you if you want to create it. It's the same for status:

SET PF-STATUS 'MY_STATUS'.

You can do a doubleclick on MY_STATUS and you'll go to menu painter.

Max

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Sure, in your abap program, type the following line of code.

CALL SCREEN 100.

Now double click on the "100". System will ask you if you want to create it. Say yes. Now you are in the screen. Click the layout button to go to screen painter.

You can do the same thing for gui status.

SET PF-STATUS '100'.

Double click the "100", system will ask if you want to create it.

Regards,

Rich Heilman

Former Member
0 Kudos

hi,

tcode se51 - create a screen

tcode se41 - gui status

cheers,

sasi

Former Member
0 Kudos