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

regarding table control view

Former Member
0 Likes
437

hi,

i am trying to display purchage order no,date,item,material to corresponding vendor account no for this i am using <b>table control</b>,vendor field,display and exit buttons to display the 4 fields specified and i got output for this but i want to hide the table control whenever i click display button only i want to display the data with table control on the same screen or any other possibilities also.

please provide solution for this.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
411

Hi,

While creating the Table control, you will give the type TABLEVIEW, so look at this strucutre, you will find an option to hide the table control,

Regards

Sudheer

3 REPLIES 3
Read only

Former Member
0 Likes
412

Hi,

While creating the Table control, you will give the type TABLEVIEW, so look at this strucutre, you will find an option to hide the table control,

Regards

Sudheer

Read only

0 Likes
411

i tried with this but i am unable to find

please provide detail explanation

Thanks and regards,

surya,

suryanarayanak@infotechsw.com.

Read only

0 Likes
411

Hi surya,

set

TC-INVISIBLE = 'X'. TC---->Table control name.

For Eg:.

If Content of table control is empty,you want to hide the table control,

then you can do like this.

In PBO,

PROCESS BEFORE OUTPUT.

Module status .

module status output.

if itab is initial.

TC-INVISIBLE = 'X'.

else.

clear tc-invisible.

Endif.

endmodule.