cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

I'm calling an instance public method of a global class from my local class, an internal table is processed and populated inside this method. How can I access this internal table data from my local class?

Ex - data(lo_object) = NEW zcl_xxxx( ).

lo_object->parse_xml( ).

In this Parse_xml method an internal table gt_header is populated, I want to access this table data in my local class.

Note - this method has no returning parameters.

I'm new to ABAP please excuse me if the question is too basic or insensible.

0 Likes
View Entire Topic
FredericGirod
Active Contributor
0 Likes
lo_object->my_beautiful_table 

it does not work ?