cancel
Showing results for 
Search instead for 
Did you mean: 

Table Control in RF screens

Former Member
0 Kudos

Hi Guys,

I am new to RF screens. Can anybody tell me how to create table control or step loops for scrolling in RF Screens. I've gone through the previous forms but couldn't find any answer to the question. Points will be rewarded for the best answer.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi

As per my understanding you can not place Table contorl on RF screens, because those are CUI.

So please put Input field and use Push buttons for page up and Down.

Implement code for Pushbuttons to change values in the input filed.

There is no other option except above.

Thanks,

Edited by: Ramakrishna C on Feb 13, 2008 2:53 PM

0 Kudos

Hi,

You use step loops and write PAI modules for page up and page down.

in PAI modules put

the following

CASE sy-ucomm.

when "page down"

p_cursor = p_cursor + p_line.

IF p_cursor > p_count.

p_cursor = p_cursor - p_line.

ENDIF.

When 'Page up"

p_cursor = p_cursor - p_line.

IF p_cursor =< 1.

p_cursor = 1.

ENDIF.

End case.

Where in the above p_cursor is current curssor position

and p_line is sy-loopc.

am i clear,

award point if use full.

Thanks,

Surya

Thanks,

Surya

former_member182371
Active Contributor
0 Kudos

Hi,

this is a SAP HELP link:

http://help.sap.com/saphelp_nw04/helpdata/en/d1/801c13454211d189710000e8322d00/content.htm

Have a look to see if it helps.

Best regards.