2009 Feb 21 7:49 PM
How to create internal table with lines like structure?
2009 Feb 21 8:20 PM
TYPES: BEGIN OF t_hidk.
INCLUDE STRUCTURE hidk.
TYPES: END OF t_hidk.
DATA: gt_hikd TYPE STANDARD TABLE OF t_hidk.
Edited by: S S on Feb 21, 2009 9:20 PM
2009 Feb 22 5:03 AM
Hi, S S
You can do simply like the following too.
DATA: it_pskey LIKE STANDARD TABLE OF pskey WITH HEADER LINE.there PSKEY is the Structure name like in your above Example HIDK is the name of Structure.
Kind Regards,
Faisal
2009 Feb 22 8:46 AM
HI,
" Internal table declaration without Header Line
DATA gt_hikd LIKE STANDARD TABLE OF hidk.
" Work Area declaration
DATA g_hikd LIKE LINE OF gt_hikd.
2009 Feb 28 11:45 AM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |