2008 Mar 09 6:03 AM
2008 Mar 09 6:15 AM
do u want to see the fields of internal table?
double click on internal table.
example,
types: begin of LT_CUST,
kunnr type kunnr,
name1 type name1,
end of LT_CUST.
DATA: IT_CUST TYPE TABLE OF LT_CUST.
here you can double click on LT_CUST to see the fields of internal table.
regards.
santhosh reddy
Edited by: Santhosh Reddy on Mar 9, 2008 11:46 AM
2008 Mar 09 8:34 AM
HI,
Try yhis sample :
REPORT YGECICI MESSAGE-ID 00
No Standard Page Heading
Line-Size 200
Line-Count 65.
data: Fields type i,
begin of fieldlist occurs 0,
no like RSTRUCINFO,
end of fieldlist,
begin of itab occurs 0,
f1 TYPE C,
name1 LIKE lfa1-name1,
f2,
f3,
end of itab.
CALL FUNCTION 'GET_COMPONENT_LIST'
EXPORTING
program = 'YGECICI'
fieldname = 'ITAB'
TABLES
components = fieldlist.
Cheers,
Chandra Sekhar.