Skip to Content
0
Former Member
Dec 09, 2006 at 08:02 AM

Problem in table control

26 Views

Hi all,

I have created a screen in which i have placed a table control..this screen has 3 pushbuttons Insert update and delete..I have attached a Tcode to it..

So when i execute this Tcode the table control will show the records from the table ZTLNAMES..

My issue is when i open this Tcode for first time it is showing all the records in change mode, here i can insert,update and delete any record( its working fine..) but when i open this same Tcode for multiple sessions or multiple users only upto the records it is displaying in the change mode but after the records it is showing in display mode here i unable to use insert functionality where is no change mode for a record is available...But for the first time tcode opened i can do insert functionality..

Some experts suggested it is due to Bypass Buffering..Is it so?

Or i have new thought of adding one more pushbutton NEW ENTRIES where if click on it the cursor need to be in change mode after the last record displayed..

Can any one help to write the new entries coding..some code i have written is

For PUSHBUTTON NEW ENTRIES

case sy-ucomm.

when 'NEW ENTRIES'.

describle table ZTLNAMES lines l.

Read table ZTLNAMES index l.

get cursor.....(I don't how to write the code for get cursor...pls help)

endcase.