Application Development 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: 

Selscrn title

Former Member
0 Kudos
127

Hello ,

Where /How do we set the title for selscrn ??

Thanks,

Sri

1 ACCEPTED SOLUTION

Former Member
0 Kudos
82

Hi,

Go to Report Menu

1.GOTO->TEXT ELEMENTS->TEXT SYMBOLS.

2.Using SELECTION-SCREEN COMMENT 4(30) text-099 also you can give title.

3. The default title will come while you give report name while creating.

Reward if useful!

6 REPLIES 6

Former Member
0 Kudos
83

Hi,

Go to Report Menu

1.GOTO->TEXT ELEMENTS->TEXT SYMBOLS.

2.Using SELECTION-SCREEN COMMENT 4(30) text-099 also you can give title.

3. The default title will come while you give report name while creating.

Reward if useful!

Former Member
0 Kudos
82

in abap editor goto---> attributes there change the title..

regards

shiba dutta

Former Member
0 Kudos
82

HI,

CHECK OUT THE SAMPLE CODE:

SELECTION-SCREEN: BEGIN OF BLOCK BLK1 WITH FRAME TITLE TEXT-001.

PARAMETERS,SELECT-OPTIONS....

SELECTION-SCREEN: END OF BLOCK BLK1.

DOUBLE CLICK ON TEXT-001 . THERE SPECIFY THE SEELCTION SCREEN TITLE AND ACTIVATE THE TEXT ELEMENTS.

REGARDS,

NAVNEETH K.

Former Member
0 Kudos
82

Hi

If u want title for selection screen

Try like this

SELECTION-SCREEN BEGIN OF SCREEN 1100 AS SUBSCREEN.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-010.
PARAMETERS: p1(10) TYPE c,
            p2(10) TYPE c,
            p3(10) TYPE c.
SELECTION-SCREEN END OF BLOCK b1.
SELECTION-SCREEN END OF SCREEN 1100.

SELECTION-SCREEN BEGIN OF SCREEN 1200 AS SUBSCREEN.
SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-020.
PARAMETERS: q1(10) TYPE c OBLIGATORY,
            q2(10) TYPE c OBLIGATORY,
            q3(10) TYPE c OBLIGATORY.
SELECTION-SCREEN END OF BLOCK b2.
SELECTION-SCREEN END OF SCREEN 1200.

DATA: ok_code TYPE sy-ucomm,
      save_ok TYPE sy-ucomm.

DATA: number(4) TYPE n VALUE '1100'.

START-OF-SELECTION.
  CALL SCREEN 100.

MODULE status_0100 OUTPUT.
  SET PF-STATUS 'SCREEN_100'.
ENDMODULE.

MODULE cancel INPUT.
  LEAVE PROGRAM.
ENDMODULE.

MODULE user_command_0100 INPUT.
  save_ok = ok_code.
  CLEAR ok_code.
  CASE save_ok.
    WHEN 'BUTTON1'.
      number = 1100.
    WHEN 'BUTTON2'.
      number = 1200.
  ENDCASE.
ENDMODULE.

AT SELECTION-SCREEN.
  MESSAGE s888(sabapdocu) WITH text-030 sy-dynnr.

Check this link

http://www.sapfans.com/sapfans/alex.htm

Reward all helpfull answers

Regards

Pavan

Former Member
0 Kudos
82

or write the code

at selection-screen output.

set titlebar 'ZSPD'.

here dbl click on ZSPD and give the title press all title activate the title bar...

regards

shiba dutta

Former Member
0 Kudos
82

hi

se38 > goto> attributes--> give the title.

go to >text-elements> text symbols--> u can change the variable name etc provided that u should have mentioned it in selection screen.

selection-screen begin of block bl1 with frame title text-100.

select-options...

selection-screen end of block bl1

reward if useful