Application Development 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: 

Deep structure-assign component help

former_member225134
Participant
0 Kudos

Hi All,

Am having Changing parameter value in one method. The changing parameter strct. contains all the data in below format.

CS_TEMP_LOG_API------> structure : deep

REC_INFS------> its a component from the aboe strct CS_TEMP_LOG_API.,

CS_TEMP_LOG_API-REC_INFS------->-table

again double click------> it contains field value.(CREATED_AT)

CS_TEMP_LOG_API- REC_INFS[1]- REC_INF - CREATED_AT

now i wan to fetch the final field value created_at.How to read the values from vahnging parameter final field value.Please anyone helpout on this.Screen shot is attached for refernce.

Thanks.deep-str.jpg

1 ACCEPTED SOLUTION

matt
Active Contributor

An internal table is an internal table. It doesn't matter if it is ITAB[] or CS_TEMP_LOG_API-REC_INFS[]. You treat it the same way.

Read the table into a work area. if that work area contains an internal table in its structure, then read that table into a work area.

1 REPLY 1

matt
Active Contributor

An internal table is an internal table. It doesn't matter if it is ITAB[] or CS_TEMP_LOG_API-REC_INFS[]. You treat it the same way.

Read the table into a work area. if that work area contains an internal table in its structure, then read that table into a work area.