Application Development and Automation 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: 
Read only

select-options problem

Former Member
0 Likes
544

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
Read only

Former Member
0 Likes
519

Hello,

U can check the Tcode SE16.

Thanks

Vasanth

Read only

Former Member
0 Likes
519

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

Read only

0 Likes
519

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

Read only

Former Member
0 Likes
519

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,