2005 Jul 29 5:55 AM
Hi,
The following is a public attribute in the class CL_MEREP_SYNCBO_META
data FIELD_GROUPS type MEREP_TSYNCBO_FIELD_GROUP read-only .
MEREP_TSYNCBO_FIELD_GROUP is a table type having ref type CL_MEREP_SYNCBO_FIELD_GROUP (which is a class)
What is the meaning of such table type?
Regards,
Ravi
2005 Jul 29 6:14 AM
I think it means the CL_MEREP_SYNCBO_FIELD_GROUP class is the item of the table.
it is like a array type CL_MEREP_SYNCBO_FIELD_GROUP,
every itme of MEREP_TSYNCBO_FIELD_GROUP is a class CL_MEREP_SYNCBO_FIELD_GROUP.
2005 Jul 29 6:18 AM
Hi Ravi,
It simply means that any data object that is declared using this table type will be able to hold the objects (actually object-references) of that class.
You can think of it as an array of pointers (to objects).
Regards,
Anand Mandalika.