I would like to convert an ABAP Spool Job (compare RSPO_RETURN_ABAP_SPOOLJOB) back to a Listobject (Structure ABAPLIST, see function Module LIST_FROM_MEMORY).
Has anyone an idea or know an appropriate function module ?
I am not that clear on your question. Are you trying to convert back the list object from memory into a Abap list screen? If this is the case, have you check function module WRITE_LIST?
parameters: p_rqid type TSP01-RQIDENT.
DATA: MEM_TAB LIKE ABAPLIST OCCURS 10.
DATA: HTML_TAB LIKE w3html OCCURS 10.
SUBMIT RSPOLIST EXPORTING LIST TO MEMORY AND RETURN
WITH RQIDENT = p_RQID
WITH FIRST = '1'
WITH LAST = '0'.
CALL FUNCTION 'LIST_FROM_MEMORY'
TABLES
LISTOBJECT = MEM_TAB
EXCEPTIONS
NOT_FOUND = 1
OTHERS = 2.
CALL FUNCTION 'WWW_HTML_FROM_LISTOBJECT'
TABLES
HTML = HTML_TAB
LISTOBJECT = mem_tab.
Basically, run RSPOLIST to get the list to memory, extract the list, and then call the function to generate HTML.
You should only submit an answer when you are proposing a solution to the poster's problem. If you want the poster to clarify the question or provide more information, please leave a comment instead, requesting additional details. When answering, please include specifics, such as step-by-step instructions, context for the solution, and links to useful resources. Also, please make sure that you answer complies with our Rules of Engagement.
Add a comment