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: 

select-options problem

Former Member
0 Kudos

hi everyone,

i am trying to create one selection screen.on which i've to show the fields as select options.and those field names and table name i've to get from another table.

select options in the screen should come like when we have selected the selection fields of any data base table.

very urgent!!!!!!!!!!!!

regards,

Bharat.

5 REPLIES 5

Former Member
0 Kudos

Hello,

U can check the Tcode SE16.

Thanks

Vasanth

Former Member
0 Kudos

Hi,

Be clear what do you want exactly.

You can design the screen as below:

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.

SELECT-OPTIONS: s_matnr FOR mara-matnr, " Material No

s_werks FOR t001w-werks, " Plant

s_lgort FOR t001l-lgort. " Storage Location

SELECTION-SCREEN END OF BLOCK b1.

regards,

Anji

0 Kudos

i need to pass the name and type of select-options dynamically from internal table

Former Member
0 Kudos

Hi,

from your description, i supose you want to create a selection-screen, according to some field of a table, just like when you browse a table in se16, or using logical tables.

To do so, you can use for example, dinamic reporting using

INSERT REPORT...

GENERATE REPORT...

this way you can create the selection-screen dinamicaly.

Regards,