Hi Anoop
When I used this function module , before I used the function module LIST_FROM_MEMORY to recover the table from memory.
For example :
SUBMIT Z*
EXPORTING LIST TO MEMORY
Condition....
CALL FUNCTION 'LIST FROM MEMORY'
TABLES
LISTOBJECT = IT_LIST
EXCEPTIONS
....
IF SY-SUBRC EQ 0.
CALL FUNCTION 'LIST_TO_ASCII'
EXPORTING
LIST_INDEX = -1
TABLES
LISTASCI = IT_TXT
LISTOBJECT = IT_LIST
EXCEPTION
.....
ENDIF.
After do it, you can process the table
Regards
Gregory