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

How can i refresh Table Control ?

Former Member
0 Likes
5,443

I created a table control using wizard in screen

İ have get some data  from databese using other dialog screen.

This Part When i change data in the other screen and for example press the OK button  ?

I wanna refresh my table control ?

How can i do this ?

Thanks & Regards

5 REPLIES 5
Read only

Former Member
0 Likes
2,440

You mean to say that when you return to table control it should get automatic refreshed?

Read only

0 Likes
2,440

Yes i wanna automatic refresh for table control.

Read only

Former Member
0 Likes
2,440

REFRESH CONTROL <Table Control> FROM SCREEN '<Screen No>'.

Read only

Arun_Prabhu_K
Active Contributor
0 Likes
2,440

Hello.

     Table control data is nothing but a reflection of your internal table data.

     On OK button press, call the table control screen once again.

     Only when PBO is executed, the changes will be reflected in the screen.

Regards.

Message was edited by: K.Arun Prabhu

Read only

Former Member
0 Likes
2,440

Hi Burak,

     WHEN 'MODIFY'.
       CALL TRANSACTION 'ZRMARA'.
       REFRESH CONTROL 'SOURCE' FROM SCREEN '9000'.


It is refreshing Table Control when I return from TCODE 'ZRMARA'