Application Development and Automation 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: 
Read only

read the value from the internal table?

Former Member
0 Likes
537

Hi,

I have an internal table is_object.

and it is deep structure.

is_object contains one more internal table as a field "items"

Now how to read the value "is_object-items[1]-be_doc_type"..

can any one pls help

thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
515

Hello,

Create a WA with the type of the deep structure...

LOOP AT is_object-items[1]-be_doc_type INTO WA_BE_DOC_TYPE.

WA_BE_DOC_TYPE IS AVAILABLE TO READ!!

ENDLOOP.

I hope this helps!!

Gabriel P.-

Hi,

I have an internal table is_object.

and it is deep structure.

is_object contains one more internal table as a field "items"

Now how to read the value "is_object-items[1]-be_doc_type"..

can any one pls help

thanks

2 REPLIES 2
Read only

Former Member
0 Likes
516

Hello,

Create a WA with the type of the deep structure...

LOOP AT is_object-items[1]-be_doc_type INTO WA_BE_DOC_TYPE.

WA_BE_DOC_TYPE IS AVAILABLE TO READ!!

ENDLOOP.

I hope this helps!!

Gabriel P.-

Read only

Former Member
0 Likes
515

Hello Again...

If it is an object you may have to look for a method to return the content you r looikng for.

Bye.... again

Gabriel P