cancel
Showing results for 
Search instead for 
Did you mean: 

Submit ALV in webdynpro

Former Member
0 Kudos

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!

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Jorge.

Exporting list to memory exports the result as abap list to memory.

To use the result in Wd4A ALV you need the result table structure and

the result itself.

Maybe you can extend the standard programm in order to export the result table to

memory. After submiting the report you import the result table and then bind it to a node for the ALV.

Cheers,

Sascha

Answers (1)

Answers (1)

Former Member
0 Kudos

Please, help! Need more details, please?