Skip to Content
0
Former Member
Sep 10, 2007 at 12:26 PM

Submit ALV in webdynpro

31 Views

Hello folks, i need to load the information from the result of a ALV in a webdynpro.

The program aqzzzhr_rc======zhr_rc06====== and the variant CUS&STANDARD.

I am using this:

DATA list_tab TYPE TABLE OF abaplist.

SUBMIT aqzzzhr_rc======zhr_rc06======

USING SELECTION-SET 'CUS&STANDARD'

EXPORTING LIST TO MEMORY

AND RETURN.

CALL FUNCTION 'LIST_FROM_MEMORY'

TABLES

listobject = list_tab

EXCEPTIONS

not_found = 1

OTHERS = 2.

IF sy-subrc EQ 0.

CALL FUNCTION 'WRITE_LIST'

TABLES

listobject = list_tab.

end.

My problem is that i cannot see a real information from ALV inside the table list_tab. The info inside says something like RFCRECORD blah blah blah.

Is there a way to convert this information in real data from ALV?

Is there a way to access the information stored in memory?

Thanks in advance!