former_member602713
Explorer
Member since ‎2018 Dec 10

User Statistics

  • 8 Posts
  • 0 Solutions
  • 3 Kudos given
  • 3 Kudos received

User Activity

Hi, We are trying to write a UTF8 file (with a BOM) on Application Server using ABAP using the following statement: OPEN DATASET <file> FOR OUTPUT IN TEXT MODE ENCODING UTF-8 WITH BYTE-ORDER MARK IGNORING CONVERSION ERRORS. While on the unicode...
Hi, We have a program distributed via Transport. The program currently requires input from the executing user to control where files are produced on the App Server / Network Drive, which really should be controlled centrally by the environment's BA...
Hi, When using CL_ABAP_GZIP_TEXT_STREAM, it requires a buffer interface if_abap_gzip_text_handler~use_out_buf which is defined as static. This works fine when I need a single compression stream. E.g. looping through a single table, writing data o...
Hi all, Am trying to get a very basic gzip streaming example working, taking some example text and hopefully displaying to the screen (for now). Ultimately, looking to write out tabular data to a compressed file. The ABAP code is based off the ex...