Application Development 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: 

scroll through

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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.