2006 Mar 16 2:20 PM
Hi All:
I'm making a small app which download the contents of the FUPARAREF table.
The problem arises when I tried to upload the generated file back into SAP. I'm using GUI_UPLOAD but i gives me an error message saying that the data of the file couldn't be readed...If I use WS_UPLOAD, it just load the first line of the file, but truncated...I think that the problem is that this field is too long...<b>STRUCTURE RS38L_TYP CHAR 132</b>...Any ideas? -:(
Greetings,
Blag.
2006 Mar 16 2:22 PM
maybe when you have cretated the files the line where 200char long and when you try to read it it is shorter!
post some codes plz!
Hi All:
I'm making a small app which download the contents of the FUPARAREF table.
The problem arises when I tried to upload the generated file back into SAP. I'm using GUI_UPLOAD but i gives me an error message saying that the data of the file couldn't be readed...If I use WS_UPLOAD, it just load the first line of the file, but truncated...I think that the problem is that this field is too long...<b>STRUCTURE RS38L_TYP CHAR 132</b>...Any ideas? -:(
Greetings,
Blag.
2006 Mar 16 2:22 PM
maybe when you have cretated the files the line where 200char long and when you try to read it it is shorter!
post some codes plz!
2006 Mar 16 2:27 PM
I created the table this way...
DATA: T_FUPARAREF TYPE STANDARD TABLE OF FUPARAREF WITH HEADER LINE.
I used for both Download and Upload so i don't think thats the problem...
Greetings,
Blag.
2006 Mar 16 3:19 PM
I already browse OSS notes...but couldn't find any suitable solution. Got any ideas?
Greetings,
Blag.
2006 Mar 16 4:49 PM
Finally i managed to fix it -:D
Anyway...it's a weird problem -:(
I just create a new TYPE structure and replace this field
<b>PPOSITION SYTABIX INT4 10</b> with a simple <b>PPSOTION(1) TYPE C</b>, because that field needs only 1 character...
Greetings,
Blag.