Space at 76th character of xml transformation in base64.

Hi, experts.

Why xml transformation sets a space or ‘/n’ at 76 character? Is it possible to set up so that doesn’t do it.

I’ve created a simple program:

data : lv_body TYPE xstring,

      lv_trans_name TYPE string.

types : begin of struct_type,

          name type xstring,

        end of struct_type.

 

data : lt_tab TYPE TABLE OF struct_type,

       ls_tab like LINE OF lt_tab.

 

ls_tab-name = ‘30313034363034373235303030393738323135583E4C4D756365745A71374E3C47533E3931454531303C47533E39322B457A2F743153736732306A656A733276426A2F49786F68373243787A304A2F684B7930554431612B6B773D’.

insert ls_tab into table lt_tab.

ls_tab-name = ‘3031303436303437323530303039373832313550385227584130267144676C3C47533E3931454531303C47533E39326A4A687830364A347A5574555A44565542732B4A6E344F486E536551765044586D79313366725376646B553D’.

insert ls_tab into table lt_tab.

lv_trans_name = ‘ZVA_TEST’.

  TRY.

      CALL TRANSFORMATION (lv_trans_name)

      SOURCE root = lt_tab

      RESULT XML lv_body.

   ENDTRY.

And at the end i’m having

1000000163.jpg

 Spaces are always at 76 character.

Scroll to Top