‎2005 Mar 09 10:07 AM
Hi,
i have a problem with the batch input of picking window in vl02n transaction. I need to select a row of the bottom table but i don't know how many lines ara available in the program(different than the number of lines i can see) and it's possible that i will have to click the page down button, but i don't know when do this.
I can't find any positioning option or similar.
Any suggestion for doing this?
Thanks
‎2005 Mar 09 10:34 AM
Hi Oscar Alonso,
There is a Place Cursor button at the bottom of the screen, with this you can select the Item number you want irrespective of Number of Items.
regards,
Jagadish
‎2005 Mar 09 10:57 AM
Hi ,
pls use the bi-recorder (ta: shdb)
here's an example for positioning:
*positioning
perform bdc_dynpro using 'SAPMF02D' '0360'.
perform bdc_field using 'BDC_CURSOR' 'KNVK-NAME1(03)'.
perform bdc_field using 'BDC_OKCODE' '=LSDP'.
...
*page down
perform bdc_field using 'BDC_CURSOR' 'KNVK-NAMEV(04)'.
perform bdc_field using 'BDC_OKCODE' '=P+'.
...
regards Andreas