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: 

qestion in selection screens

Former Member
0 Kudos

in selection screen has

select-options -


parameters -


select-options -


we want selection screen in this format

select-options--


parameters -
select-options--


is it possiable ok plzz answer my qestion

4 REPLIES 4

gopi_narendra
Active Contributor
0 Kudos

Check the program demo_sel_screen_beg_of_line_1 under ABAPDOCU transaction.

Regards

Gopi

Former Member
0 Kudos

Hi,

Use BEGIN OF LINE and END OF LINE.

example:

SELECTION-SCREEN BEGIN OF LINE.

*Declare what ever you want

SELECTION-SCREEN END OF LINE.

Example:

Check the below code

tables: pa0000.

selection-screen begin of line.

select-options: s_pernr for pa0000-pernr no-extension.

parameters: p_num(3) type n.

select-options: s_stat2 for pa0000-stat2 no-extension.

selection-screen end of line.

Message was edited by:

Velangini Showry Maria Kumar Bandanadham

Former Member
0 Kudos

hi kranthi,

yes this is possible ,

u can do this way...

Selection-screen begin of block block1.

parameters : p1,

p2.

selection-screen end of block block1.

Selection-screen begin of block block2.

select-options : p3 for xyz,

p4 for abc.

selection-screen end of block block2.

Selection-screen begin of block block3.

parameters : p5,

p6.

selection-screen end of block block3.

this willl work.

regards,

sohi

reward if helpful

Former Member
0 Kudos

hi,

try like this

SELECTION-SCREEN: BEGIN OF BLOCK BI WITH FRAME TITLE 'T00' -> double clicko n T00 and give title for selection screen.

SELECTION-SCREEN BEGIN OF LINE.

select-option: s_aluri for mara-matnr.

parameters: p_suresh type i.

slect-option: s_babu for vbap -vbeln.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN: END OF BLOCK BI .

if helpful reward some points.

with regards,

Suresh Aluri.