I have a problem reading the file generated from a BLOB fetch (on IBM i).
My scenario is (pseudocode):
1) File generation from a list
Code: Select all
Use Builtin(TRANSFORM_LIST) With_Args(#myList #fileName 'AU' 'I') To_Get(#Return_code)
Code: Select all
#myBlob := #fileName
Insert Fields(#myKey #myBlob) To_File(MyFile)
Code: Select all
Fetch Fields(#myBlob) From_File(MyFile) With_Key(#myKey)
5) The problem is here, I want to re-convert as list but I get the 'ER' Return_code
Code: Select all
Use Builtin(TRANSFORM_FILE) With_Args(#myList #myBlob.fileName 'AU' 'I') To_Get(#Return_code)
Some ideas?
Thank you
Andrea