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

Dynamic Field Selection

Former Member
0 Likes
509

i made an SE11 like program.

the user can choose any table they desire.

and i made the dynamic selection screen (for filtering of records) all right.

now, i want to display ONLY fields that were chosen by the user.

should be dynamic as well.

through check boxes perhaps.

any idea how?

like is there a FM for this?

1 ACCEPTED SOLUTION
Read only

andreas_mann3
Active Contributor
0 Likes
482

compare use of field "mark" in LZE16WF60 of transaction se16n

A.

3 REPLIES 3
Read only

andreas_mann3
Active Contributor
0 Likes
483

compare use of field "mark" in LZE16WF60 of transaction se16n

A.

Read only

0 Likes
482

what's that?

i'm not sure what you mean.

Read only

0 Likes
482

HI,

use this function module.

CALL FUNCTION 'RS_TABLE_LIST_CREATE'

EXPORTING

TABLE_NAME = 'MARA' "your table name

ACTION = 'ANZE'

WITHOUT_SUBMIT = ' '

GENERATION_FORCED = 'X'

NEW_SEL = 'X'

EXCEPTIONS

TABLE_IS_STRUCTURE = 01

TABLE_NOT_EXISTS = 02

DB_NOT_EXISTS = 03.

rgds,

bharat.