Application Development 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: 

tab control

Former Member
0 Kudos

REPORT ZTABLE .

tables zpurchase_req.

CONTROLS : TCL1 TYPE TABLEVIEW USING SCREEN 0001.

call screen '0001'.

DATA : BEGIN OF ITAB OCCURS 0,

PRONO LIKE ZPURCHASE_REQ-PRONO,

flag,

END OF ITAB.

&----


*& Module OUTPUT OUTPUT

&----


  • text

----


MODULE OUTPUT OUTPUT.

REFRESH ITAB.

SELECT PRONO FROM ZPURCHASE_REQ INTO TABLE ITAB WHERE PRONO =

ZPURCHASE_REQ-PRONO.

ENDMODULE. " OUTPUT OUTPUT

&----


*& Module DISPLAY OUTPUT

&----


  • text

----


MODULE DISPLAY OUTPUT.

*MOVE ZPURCHASE_REQ-PRONO TO ITAB-PRONO.

ITAB-PRONO = zPURCHASE_REQ-PRONO.

ENDMODULE. " DISPLAY OUTPUT.

In this program i had used table control for displaying prono.I had set w/selction column as flag....

The data's are not coming into that table control...

Reg'

Zeemaaaa..

1 ACCEPTED SOLUTION
1 REPLY 1