2007 Mar 26 7:16 AM
Hi abappers,
i want to declare a work area for a structure ROIITANKDIP_DISPLAY in OO ABAP.
can u give me the syntax for the same.
regards,
mansi.
Hi,
its not possible to create an internal table with header line in OO ABAP.
for that we need to go for field-symbols.
check this his may be helpful.
http://help.sap.com/saphelp_46c/helpdata/en/fc/eb387a358411d1829f0000e829fbfe/content.htm
regards,
bharat.
2007 Mar 26 7:22 AM
data: wa type ROIITANKDIP_DISPLAY.
regards,
Hans
Please reward all helpful answers !!!!!
2007 Mar 26 7:24 AM
2007 Mar 26 7:24 AM
HI,
data: begin of itab occurs 10,
ab type c,
cd type i,
end of itab. " this table will have the header line.
data: wa_itab like itab. " explicit work area for itab
Regards
Sudheer
2007 Mar 26 7:42 AM
Can u tell me how to declare an internal table in OO ABAP with a header line.
2007 Mar 26 7:47 AM
like this
<b>data: w_ekbe type standard table of ekbe initial size 0,
w_ekbe_l like line of w_ekbe,
loop at w_ekbe into w_ekbe_l where belnr ne w_lips-vbeln.
w_sum_d = w_sum_d + w_ekbe_l-menge.
endloop.</b>
Regards
Prabhu
2007 Mar 26 7:25 AM
2007 Mar 26 7:47 AM
Hi,
its not possible to create an internal table with header line in OO ABAP.
for that we need to go for field-symbols.
check this his may be helpful.
http://help.sap.com/saphelp_46c/helpdata/en/fc/eb387a358411d1829f0000e829fbfe/content.htm
regards,
bharat.
| User | Count |
|---|---|
| 6 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |