Code: Alles auswählen.
DATA lr_bol_core TYPE REF TO cl_crm_bol_core.
DATA lr_entity TYPE REF TO cl_crm_bol_entity.
* Load the component
lr_bol_core = cl_crm_bol_core=>get_instance( ).
lr_bol_core->start_up( 'BT' ).
* Get root entity
CALL METHOD lr_bol_core->get_root_entity
EXPORTING
iv_object_name = 'BTOrder'
iv_object_guid = is_lead-lead_guid
RECEIVING
rv_result = lr_entity.
IF lr_entity IS BOUND.
*** Wie bekomme ich die "Dependent Objects" zu meiner Entität?