2008 Jun 17 12:21 AM
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
2008 Jun 17 12:33 AM
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
2008 Jun 17 12:33 AM
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.-
2008 Jun 17 12:34 AM
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