Application Development and Automation 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: 
Read only

batch input with table control

Former Member
0 Likes
910

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

2 REPLIES 2
Read only

Former Member
0 Likes
566

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

Read only

andreas_mann3
Active Contributor
0 Likes
566

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