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: 

ALV dynamic with deep structure

Former Member
0 Kudos

Hi All,

I need to program an ALV Report with a deep structure based on a outbound proxy structure, so I should pass to ALV function or ALV Method a dynamic table and a dynamic structure.

I tried to do it but I got a dump using this function module REUSE_ALV_GRID_DISPLAY with these parameters: STRUCTURE_NAME and T_OUTTAB.

Please, some suggestions about this.

Thanks in advance.

Alexis.

2 REPLIES 2

Former Member
0 Kudos

Hi,

Try using field symbols.

paste ur code for more understanding.

Regards,

vasanth

0 Kudos

Hi Vasanth

this is my example:

DATA: tl_proxy TYPE TABLE OF zpidt_operacion.

DATA: sl_proxy TYPE zpidt_operacion.

sl_proxy-dt_operacion-dt_cab_operacion-vkorg = '0001'.

APPEND sl_proxy TO tl_proxy.

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

EXPORTING

i_callback_program = sy-repid

i_structure_name = 'ZPIDT_OPERACION'

TABLES

t_outtab = tl_proxy

EXCEPTIONS

program_error = 1

OTHERS = 2.

Please, could you tell me how I have to do it.

Thanks,

Alexis.