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: 

how to add new field to table control data not displayed

Former Member
0 Kudos

hi

I have added some nwe fields to already existing table control added three new fields...

though the recoreds are inserted in teh table properly with the three new fields user id data and time fields

but on display only the data is not shown in these three columns though the data is coming in internal table...but not to the screen output

pls suggest where the problme may be

nishant

1 REPLY 1

Former Member
0 Kudos

First try the small button Configuration on top right of the table control, as displayed when you run the program. Hit 'Administrator' and see if the fields are checked as invisible. Uncheck them, activate and save.

If the fields are not in that list at all, then check if the table control is initialized for the screen you use. For example

CONTROLS: tc_ent_lines TYPE TABLEVIEW USING SCREEN '0100'.

but you copied your screen and use the same table control in the new screen 0200. Then all you have to do is

REFRESH CONTROL 'TC_ENT_LINES' FROM SCREEN '0200'.

before you show the screen.