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

Table control

pbechani
Participant
0 Likes
379

I have a table control which was displaying perfectly. I decided to add a tab control to my screen.

When I created a new screen for my table control and called it from the the main screen onto the tab, it is displayed with a list of item from the PBO event. These values would have been assigned in a prevoius session.

Is there a way of clearing these values and start with a black table.

Points will be rewarded

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
350

Hi,

Clear the internal table when you call it from the main screen..

REFRESH ITAB_TC. " Refresh the internal table for TC before displayin..

CALL SCREEN '0200' . "New screen for table control.

Thanks,

Naren

3 REPLIES 3
Read only

Former Member
0 Likes
351

Hi,

Clear the internal table when you call it from the main screen..

REFRESH ITAB_TC. " Refresh the internal table for TC before displayin..

CALL SCREEN '0200' . "New screen for table control.

Thanks,

Naren

Read only

Former Member
0 Likes
350

Hi

But have you two tables control?

I can't understand this, anyway you should refresh the internal table where the data to be listed in TC are stored.

Max

Read only

Former Member
0 Likes
350

Clear <internal table>

Refresh <IT>

Before calling the table control screen.

If you need Use it below code.

This for refresh the table control syntax

REFRESH CONTROL 'TBCL' FROM SCREEN '0100'.