‎2007 Oct 26 11:26 AM
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?
‎2007 Oct 26 11:30 AM
compare use of field "mark" in LZE16WF60 of transaction se16n
A.
‎2007 Oct 26 11:30 AM
compare use of field "mark" in LZE16WF60 of transaction se16n
A.
‎2007 Oct 26 11:38 AM
‎2007 Oct 26 12:03 PM
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.