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

scroll through

Former Member
0 Likes
1,097

Hi,

I display an HTML page on top of an ABAP list. Is it possible to create buttons in the HTML page that, when clicked, will scroll through the ABAP list (e.g. one page forward/backward)?

Thanks,

Rachita.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,071

Hi,

Yes, this is possible. Please use the symbolic URL SAP://OK:xxxx" to execute an OK-Code xxxx, for example "P+" in order to scroll one page forward:

<a href="SAP://OK:P+">Next page</a>

It is also possible to scroll to a particular list line n, e.g.

<a href="SAP://OK:/Scrolltoline=578">Summary</a>

Reward Points if found helpfull..

Cheers,

Chandra Sekhar.

1 REPLY 1
Read only

Former Member
0 Likes
1,072

Hi,

Yes, this is possible. Please use the symbolic URL SAP://OK:xxxx" to execute an OK-Code xxxx, for example "P+" in order to scroll one page forward:

<a href="SAP://OK:P+">Next page</a>

It is also possible to scroll to a particular list line n, e.g.

<a href="SAP://OK:/Scrolltoline=578">Summary</a>

Reward Points if found helpfull..

Cheers,

Chandra Sekhar.