‎2007 Jun 05 9:27 AM
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.
‎2007 Jun 05 9:38 AM
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
‎2007 Jun 05 9:38 AM
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
‎2007 Jun 06 7:40 AM
i tried with this but i am unable to find
please provide detail explanation
Thanks and regards,
surya,
suryanarayanak@infotechsw.com.
‎2007 Jun 06 11:07 AM
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.