‎2006 May 16 4:20 PM
Hi Experts,
I am facing a typical problem with table control . Whenever am trying to scroll in my table control the data is getting invisible from the control.
But its there in the itab(which i found out by debugging).
I've no clear/refresh statements in the code. Am using refresh control command.
Also the scrolling is having problems.
Awaiting for your soonest replies.
Thanks a lot in advance.
With Regards
Pradipta K Mishra
‎2006 May 16 4:26 PM
‎2006 May 16 4:26 PM
‎2006 May 16 4:29 PM
‎2006 May 16 4:31 PM
‎2006 May 16 4:33 PM
hi Pradeeptha,
Put REFRESH CONTROL Statement before the Itab gets refilled.
Regards,
Santosh
‎2006 May 16 4:34 PM
‎2006 May 16 4:58 PM
Dear Rich,
No its not working.also if am inserting new entries and pressing enter, only the 1st line is being display. rest of the records are not displayed on the screen.
actually this control is for the enduser to make new entries.
hope it'll make the scenario a bit more clear.
Rgds
Pradipta
‎2006 May 16 5:03 PM
Hi Pradipta,
Are you using any field validations in PAI ? If so, please use 'On Change Value'. I don't remember that word, i did that long ago.
Shylesh
‎2006 May 17 5:53 AM
Dear Sailesh,
Am using field validation with on request addition.Also pls tell me where exactly will i have to mention that describe table stmt for vertical scrolling. i checked in the pai but its not triggering.
its completely type M .
With Rgds
Pradipta
‎2006 May 17 2:45 PM
Hi Pradipta,
This is the code i used in my program and was working fine.
MODIFY I_INDSPEC1 INDEX TCONTROL-CURRENT_LINE.
READ TABLE I_INDSPEC1 INDEX TCONTROL-CURRENT_LINE.
DESCRIBE TABLE I_INDSPEC1 LINES W_LINE.
IF TCONTROL-CURRENT_LINE > SY-TABIX.
MOVE-CORRESPONDING I_INDSPEC1 TO I_INDSPEC1.
APPEND I_INDSPEC1.
CLEAR I_INDSPEC1.
ENDIF.
Let me know if you need any further or else give me ur mail id, i send you the complete code.
Shylesh
‎2006 May 16 5:23 PM
Hi pradipta,
I remember the same situation recently.That guy was using two internal tables to populate the table control.
Could you please post your code for PBO and PAI (for filling table control and user action).
regards,
vicky