Hello Abaper's
I have generated a XML file for the data of internal table (with 10 Records). When i download , i can see the XML file for the Entire 10 Records.
But , while transferring the XML file to Applicationserver , it's transferring only upto max 4 Records.I assume that the memory is insufficient to allocate 10 Records. Can we Increase the Memory size of the File on Application server. OR, is there any error in My Source Code.
Code i used to Transfer the XML File to Application server.
-
OPEN DATASET FNAME FOR OUTPUT IN BINARY MODE.
IF sy-subrc EQ 0.
LOOP AT it_xmltab INTO wa_xmltab.
TRANSFER wa_xmltab TO FNAME.
ENDLOOP.
ELSE.
MESSAGE e004(zmsg5) WITH 'File FNAME not opened'.
ENDIF.
CLOSE DATASET FNAME.
Regards
Jv