Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Abap Objects and table type

Former Member
0 Kudos
183

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

2 REPLIES 2

Former Member
0 Kudos
61

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.

Former Member
0 Kudos
61

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.