‎2009 Jul 28 6:43 AM
Hi All,
I want to declare one generic internal table type inside an internal table.Can anyone tell how to achieve this?
Thanks in advance.
‎2009 Jul 28 6:51 AM
‎2009 Jul 28 6:54 AM
This will throw an error saying "TABLE IS GENERIC TYPE AND CAN BE USED FOR FORMAL PARAMETER OR FOR FIELD-SYMBOLS ONLY"
ok...Can you tell me how to give reference for an dynamic internal table to an field of internal table?
‎2009 Jul 28 6:57 AM
Dear,
BEGIN OF itab,
date type sy-datum, " For Date type
str1 type c, " For character type
str2(30) type c, " For character type length (30)
num type i, " For integer type
Project tYPE prps-posid, " For Standard type
END OF itab.
You can put any type of data in an internal table as above.
Thanks and Regards,
Sohail