Hi all:
Using transaction SP01, I am trying to download my spool file to my hard drive but the records get truncated. I have tried the menu path:
SPOOL REQUEST>FORWARD>EXPORT AS TEXT
and I've tried this path:
SYSTEM>LIST>SAVE>LOCAL FILE
and I've also tried function module:
RSPO_DOWNLOAD_SPOOLJOB
but all of these truncate the output.
Any ideas?
Thanks,
Dave Brown
Hi David,
I am not sure if your output is more than 255 characters. Typically it happens with that. A round-about way to achieve what you want to do is as follows.
submit rspolst2 exporting list to memory and return with rqident = <your spool id> with first = <from_line> with last = <to_line>. call function 'LIST_FROM_MEMORY' tables listobject = mem_tab exceptions not_found = 1 others = 2.
Check the contents of mem_tab and see(in debugging) if it has what you wanted to download and then download. But you may loose any formatting that you might have had.
Let me know if it worked.
Srinivas
Add a comment