‎2008 Nov 11 5:03 PM
hi,
In a tablecontrol and I have add a scroll vertical in PBO_dypnro, so:
DATA: vlines type i.
DESCRIBE TABLE gt_itab lines lv_lines.
lv_lines = lv_lines + 1.
tablecontrol-v_scroll = 'X'.
This is OK, but now, when I press the vertical scroll, the PAI runs.
anyone knows how to do the PAI don't execute when press the scroll??
thank you!!
best regards
‎2008 Nov 11 5:37 PM
PAI is always executed when Scolling vertically in a table control. You can not do anything against that.
The solution would be (syntax NOT correct!):
IF ok_code = 'PAGE_DOWN'.
scoll down
ELSE.
do anything else in PAI
ENDIF.
‎2008 Nov 11 5:37 PM
PAI is always executed when Scolling vertically in a table control. You can not do anything against that.
The solution would be (syntax NOT correct!):
IF ok_code = 'PAGE_DOWN'.
scoll down
ELSE.
do anything else in PAI
ENDIF.