cancel
Showing results for 
Search instead for 
Did you mean: 

include structure

Former Member
0 Kudos

Dear experts,

the problem is as follows:

I have to use these commands in Web Dynpro.

Can you please give me a hint or a solution how to realize this ?

thanks a lot

René

DATA BEGIN OF pernr_list OCCURS 0.

include structure pernr_list_structure.

DATA END OF pernr_list.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi René,

table definition:


data pernr_list type table of pernr_list_structure.

This has no table header, so you have to use a structure like


data ls_pernr_list type pernr_list_structure.

And fill it with following coding (example)


loop at pernr_list into ls_pernr_list.
(...)
endloop.

Regards,

Andreas

Answers (0)