Hi,
How do I use for all entries for the internal table of table types without fields?
I have table type CRMT_OBJECT_GUID_TAB which has line type as data element, so does not have any fields.
Example:
data: lt_guid type crmt_object_guid_tab,
lt_customer_i type table of crmd_customer_i.
select * from crmd_orderadm_i into table lt_guid .
select * from crmd_customer_i into table lt_customer_i for all entries in lt_guid
where guid = ?????
What should I write here in where condition?
Regards,
Sagar