<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic case sensitive xml tags generation from dynamic internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-xml-tags-generation-from-dynamic-internal-table/m-p/10910829#M1890355</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;I need to generate case sensitive xml tags from dynamic internal table. The xml tag should show fieldnames stored in lowercase. The fieldname is stored in mapping table. If i keep the fieldname in uppercase, the xml output is coming perfectly fine. but if i change the fieldname to lowercase in the mapping table, a dump is being generated.&amp;nbsp; The field SAPCODE if kept in capital letters, is working perfectly fine , but if kept in lowercase letters is throwing dump. Please go through the attachments. how to solve this issue. any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saurav Lahiry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Feb 2015 06:42:16 GMT</pubDate>
    <dc:creator>former_member574106</dc:creator>
    <dc:date>2015-02-17T06:42:16Z</dc:date>
    <item>
      <title>case sensitive xml tags generation from dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-xml-tags-generation-from-dynamic-internal-table/m-p/10910829#M1890355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;I need to generate case sensitive xml tags from dynamic internal table. The xml tag should show fieldnames stored in lowercase. The fieldname is stored in mapping table. If i keep the fieldname in uppercase, the xml output is coming perfectly fine. but if i change the fieldname to lowercase in the mapping table, a dump is being generated.&amp;nbsp; The field SAPCODE if kept in capital letters, is working perfectly fine , but if kept in lowercase letters is throwing dump. Please go through the attachments. how to solve this issue. any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saurav Lahiry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 06:42:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-xml-tags-generation-from-dynamic-internal-table/m-p/10910829#M1890355</guid>
      <dc:creator>former_member574106</dc:creator>
      <dc:date>2015-02-17T06:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive xml tags generation from dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-xml-tags-generation-from-dynamic-internal-table/m-p/10910830#M1890356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;Moderator Message:&lt;/STRONG&gt;&lt;SPAN style="color: #000000;"&gt; If you're going to post code - even as an attachment - please do the courtesy of removing commented out sections. Part of the art of asking questions is to make it easy for the people you want help from. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Second, if you mention a dump, you really do have to specify the nature of the dump. &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 08:08:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-xml-tags-generation-from-dynamic-internal-table/m-p/10910830#M1890356</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2015-02-17T08:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive xml tags generation from dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-xml-tags-generation-from-dynamic-internal-table/m-p/10910831#M1890357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurav,&lt;/P&gt;&lt;P&gt;The dump triggers in field symbol. Please do the change at where and all you have used assign component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"Before&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ASSIGN COMPONENT IT_ZXML_CXC_MATERIAL-CXCTECHFIELD OF STRUCTURE &amp;lt;GFS_LINE&amp;gt; TO &amp;lt;FS1&amp;gt;.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"After&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Use Structure field Name inside quotes as shown below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;ASSIGN COMPONENT&amp;nbsp; &lt;STRONG&gt;'CXCTECHFIELD'&lt;/STRONG&gt; OF STRUCTURE &amp;lt;GFS_LINE&amp;gt; TO &amp;lt;FS1&amp;gt;.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"Before&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;FS1&amp;gt; = IT_FINAL_XML-MATKL.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"After&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt; Before using the variable, &lt;/SPAN&gt;Kindly check whether the variable is assigned or not as shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;IF &amp;lt;FS1&amp;gt; IS ASSIGNED.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;FS1&amp;gt; = IT_FINAL_XML-MATKL.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;ENDIF.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajkumar Narasimman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 11:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-xml-tags-generation-from-dynamic-internal-table/m-p/10910831#M1890357</guid>
      <dc:creator>rajkumarnarasimman</dc:creator>
      <dc:date>2015-02-17T11:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive xml tags generation from dynamic internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-xml-tags-generation-from-dynamic-internal-table/m-p/13701356#M2028026</link>
      <description>&lt;P&gt;hi expert please kindly help me , This is my abap code my requirement is to get the output in XML format where as the XML format should be case Sensitive or camel case this is my code but my output&amp;nbsp; in XML is not case sensitive or camel case kindly help me to sove the issue&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_EKKO OCCURS 0,&lt;/P&gt;&lt;P&gt;Ebeln TYPE Ekko-Ebeln,&lt;/P&gt;&lt;P&gt;Bukrs TYPE Ekko-Bukrs,&lt;/P&gt;&lt;P&gt;END OF IT_EKKO.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_EKPO OCCURS 0,&lt;/P&gt;&lt;P&gt;Ebeln TYPE Ekpo-Ebeln,&lt;/P&gt;&lt;P&gt;Ebelp TYPE Ekpo-Ebelp,&lt;/P&gt;&lt;P&gt;Matnr TYPE Ekpo-Matnr,&lt;/P&gt;&lt;P&gt;END OF IT_EKPO.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_FINAL OCCURS 0,&lt;/P&gt;&lt;P&gt;Ebeln TYPE Ekko-Ebeln,&lt;/P&gt;&lt;P&gt;Bukrs TYPE Ekko-Bukrs,&lt;/P&gt;&lt;P&gt;Ebelp TYPE Ekpo-Ebelp,&lt;/P&gt;&lt;P&gt;Matnr TYPE Ekpo-Matnr,&lt;/P&gt;&lt;P&gt;END OF IT_FINAL.&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF TTAB,&lt;/P&gt;&lt;P&gt;RECORD(5000) TYPE C,&lt;/P&gt;&lt;P&gt;END OF TTAB.&lt;/P&gt;&lt;P&gt;DATA: XMLTABLE TYPE TABLE OF TTAB,&lt;/P&gt;&lt;P&gt;XML_OUT TYPE STRING,&lt;/P&gt;&lt;P&gt;XML_OUT1 TYPE STRING,&lt;/P&gt;&lt;P&gt;LENGTH TYPE SY-TABIX.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: SO_Ebeln FOR Ekko-Ebeln DEFAULT '4500000000' TO '4500000999'.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;SELECT A~Ebeln&lt;/P&gt;&lt;P&gt;A~Bukrs&lt;/P&gt;&lt;P&gt;B~Ebelp&lt;/P&gt;&lt;P&gt;B~Matnr&lt;/P&gt;&lt;P&gt;INTO TABLE IT_FINAL FROM Ekko AS A INNER JOIN Ekpo AS B ON B~Ebeln = A~Ebeln&lt;BR /&gt;WHERE A~Ebeln IN SO_Ebeln.&lt;/P&gt;&lt;P&gt;* IF IT_EKKO IS NOT INITIAL.&lt;BR /&gt;* SELECT&lt;BR /&gt;* MATNR FROM EKPO INTO TABLE IT_EKPO WHERE EBELN = IT_EKKO-EBELN.&lt;BR /&gt;* ENDIF.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CALL TRANSFORMATION ID&lt;/P&gt;&lt;P&gt;SOURCE OUTPUT = IT_FINAL[]&lt;/P&gt;&lt;P&gt;RESULT XML XML_OUT.&lt;/P&gt;&lt;P&gt;APPEND XML_OUT TO XMLTABLE .&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;BIN_FILESIZE = LENGTH&lt;/P&gt;&lt;P&gt;FILENAME = 'C:\Users\ABH23U007\Downloads\demo.xml'&lt;/P&gt;&lt;P&gt;FILETYPE = 'BIN'&lt;/P&gt;&lt;P&gt;APPEND = ' '&lt;/P&gt;&lt;P&gt;*write_field_separator = ';'&lt;/P&gt;&lt;P&gt;HEADER = '00'&lt;/P&gt;&lt;P&gt;TRUNC_TRAILING_BLANKS = ' '&lt;/P&gt;&lt;P&gt;WRITE_LF = 'X'&lt;/P&gt;&lt;P&gt;COL_SELECT = ' '&lt;/P&gt;&lt;P&gt;COL_SELECT_MASK = ' '&lt;/P&gt;&lt;P&gt;DAT_MODE = ' '&lt;/P&gt;&lt;P&gt;CONFIRM_OVERWRITE = ' '&lt;/P&gt;&lt;P&gt;NO_AUTH_CHECK = ' '&lt;/P&gt;&lt;P&gt;CODEPAGE = ' '&lt;/P&gt;&lt;P&gt;IGNORE_CERR = ABAP_TRUE&lt;/P&gt;&lt;P&gt;REPLACEMENT = '#'&lt;/P&gt;&lt;P&gt;WRITE_BOM = ' '&lt;/P&gt;&lt;P&gt;TRUNC_TRAILING_BLANKS_EOL = 'X'&lt;/P&gt;&lt;P&gt;WK1_N_FORMAT = ' '&lt;/P&gt;&lt;P&gt;WK1_N_SIZE = ' '&lt;/P&gt;&lt;P&gt;WK1_T_FORMAT = ' '&lt;/P&gt;&lt;P&gt;WK1_T_SIZE = ' '&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;FILELENGTH = LENGTH&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DATA_TAB = XMLTABLE&lt;/P&gt;&lt;P&gt;*FIELDNAMES =&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;FILE_WRITE_ERROR = 1&lt;/P&gt;&lt;P&gt;NO_BATCH = 2&lt;/P&gt;&lt;P&gt;GUI_REFUSE_FILETRANSFER = 3&lt;/P&gt;&lt;P&gt;INVALID_TYPE = 4&lt;/P&gt;&lt;P&gt;NO_AUTHORITY = 5&lt;/P&gt;&lt;P&gt;UNKNOWN_ERROR = 6&lt;/P&gt;&lt;P&gt;HEADER_NOT_ALLOWED = 7&lt;/P&gt;&lt;P&gt;SEPARATOR_NOT_ALLOWED = 8&lt;/P&gt;&lt;P&gt;FILESIZE_NOT_ALLOWED = 9&lt;/P&gt;&lt;P&gt;HEADER_TOO_LONG = 10&lt;/P&gt;&lt;P&gt;DP_ERROR_CREATE = 11&lt;/P&gt;&lt;P&gt;DP_ERROR_SEND = 12&lt;/P&gt;&lt;P&gt;DP_ERROR_WRITE = 13&lt;/P&gt;&lt;P&gt;UNKNOWN_DP_ERROR = 14&lt;/P&gt;&lt;P&gt;ACCESS_DENIED = 15&lt;/P&gt;&lt;P&gt;DP_OUT_OF_MEMORY = 16&lt;/P&gt;&lt;P&gt;DISK_FULL = 17&lt;/P&gt;&lt;P&gt;DP_TIMEOUT = 18&lt;/P&gt;&lt;P&gt;FILE_NOT_FOUND = 19&lt;/P&gt;&lt;P&gt;DATAPROVIDER_EXCEPTION = 20&lt;/P&gt;&lt;P&gt;CONTROL_FLUSH_ERROR = 21&lt;/P&gt;&lt;P&gt;OTHERS = 22&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;FORM convert_to_camel_case USING p_xml TYPE string&lt;BR /&gt;CHANGING p_camel_case_xml TYPE string.&lt;BR /&gt;DATA: lv_pos TYPE i,&lt;BR /&gt;lv_end_pos TYPE i,&lt;BR /&gt;lv_tag_open TYPE string,&lt;BR /&gt;lv_tag_close TYPE string,&lt;BR /&gt;lv_tag TYPE string,&lt;BR /&gt;lv_tag_camel TYPE string,&lt;BR /&gt;lv_inside_tag TYPE abap_bool.&lt;/P&gt;&lt;P&gt;p_camel_case_xml = p_xml.&lt;BR /&gt;lv_inside_tag = abap_false.&lt;/P&gt;&lt;P&gt;" Convert opening tags to camelCase&lt;BR /&gt;lv_pos = 0.&lt;BR /&gt;WHILE lv_pos &amp;lt; strlen( p_camel_case_xml ).&lt;BR /&gt;FIND FIRST OCCURRENCE OF '&amp;lt;' IN SECTION OFFSET lv_pos OF p_camel_case_xml MATCH OFFSET lv_pos.&lt;BR /&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt;EXIT.&lt;BR /&gt;ENDIF.&lt;/P&gt;&lt;P&gt;FIND FIRST OCCURRENCE OF '&amp;gt;' IN SECTION OFFSET lv_pos OF p_camel_case_xml MATCH OFFSET lv_end_pos.&lt;BR /&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt;EXIT.&lt;BR /&gt;ENDIF.&lt;/P&gt;&lt;P&gt;lv_tag_open = substring( val = p_camel_case_xml off = lv_pos len = lv_end_pos - lv_pos + 1 ).&lt;/P&gt;&lt;P&gt;" Convert tag to camelCase&lt;BR /&gt;lv_tag = substring( val = p_camel_case_xml off = lv_pos + 1 len = lv_end_pos - lv_pos - 1 ).&lt;BR /&gt;IF lv_inside_tag = abap_false.&lt;BR /&gt;TRANSLATE lv_tag TO LOWER CASE.&lt;BR /&gt;ENDIF.&lt;BR /&gt;REPLACE ALL OCCURRENCES OF '-' IN lv_tag WITH ''.&lt;BR /&gt;IF lv_inside_tag = abap_false.&lt;BR /&gt;lv_inside_tag = abap_true.&lt;BR /&gt;TRANSLATE lv_tag TO lower CASE.&lt;BR /&gt;ELSE.&lt;BR /&gt;lv_inside_tag = abap_false.&lt;BR /&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CONCATENATE '&amp;lt;' lv_tag '&amp;gt;' INTO lv_tag_open.&lt;/P&gt;&lt;P&gt;" Replace original tag with camelCase tag&lt;BR /&gt;REPLACE SECTION OFFSET lv_pos LENGTH ( lv_end_pos - lv_pos + 1 ) OF p_camel_case_xml WITH lv_tag_open.&lt;/P&gt;&lt;P&gt;lv_pos = lv_end_pos + 1.&lt;BR /&gt;ENDWHILE.&lt;/P&gt;&lt;P&gt;" Convert closing tags to camelCase&lt;BR /&gt;lv_pos = 0.&lt;BR /&gt;WHILE lv_pos &amp;lt; strlen( p_camel_case_xml ).&lt;BR /&gt;FIND FIRST OCCURRENCE OF '&amp;lt;/' IN SECTION OFFSET lv_pos OF p_camel_case_xml MATCH OFFSET lv_pos.&lt;BR /&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt;EXIT.&lt;BR /&gt;ENDIF.&lt;/P&gt;&lt;P&gt;FIND FIRST OCCURRENCE OF '&amp;gt;' IN SECTION OFFSET lv_pos OF p_camel_case_xml MATCH OFFSET lv_end_pos.&lt;BR /&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt;EXIT.&lt;BR /&gt;ENDIF.&lt;/P&gt;&lt;P&gt;lv_tag_close = substring( val = p_camel_case_xml off = lv_pos len = lv_end_pos - lv_pos + 1 ).&lt;/P&gt;&lt;P&gt;" Convert tag to camelCase&lt;BR /&gt;lv_tag = substring( val = p_camel_case_xml off = lv_pos + 2 len = lv_end_pos - lv_pos - 2 ).&lt;BR /&gt;IF lv_inside_tag = abap_false.&lt;BR /&gt;TRANSLATE lv_tag TO LOWER CASE.&lt;BR /&gt;ENDIF.&lt;BR /&gt;REPLACE ALL OCCURRENCES OF '-' IN lv_tag WITH ' '.&lt;BR /&gt;IF lv_inside_tag = abap_false.&lt;BR /&gt;lv_inside_tag = abap_true.&lt;BR /&gt;TRANSLATE lv_tag TO lower CASE.&lt;BR /&gt;ELSE.&lt;BR /&gt;lv_inside_tag = abap_false.&lt;BR /&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CONCATENATE '&amp;lt;/' lv_tag '&amp;gt;' INTO lv_tag_close.&lt;/P&gt;&lt;P&gt;" Replace original tag with camelCase tag&lt;BR /&gt;REPLACE SECTION OFFSET lv_pos LENGTH ( lv_end_pos - lv_pos + 1 ) OF p_camel_case_xml WITH lv_tag_close.&lt;/P&gt;&lt;P&gt;lv_pos = lv_end_pos + 1.&lt;BR /&gt;ENDWHILE.&lt;BR /&gt;ENDFORM.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; This i&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 20:18:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-xml-tags-generation-from-dynamic-internal-table/m-p/13701356#M2028026</guid>
      <dc:creator>beginner</dc:creator>
      <dc:date>2024-05-14T20:18:23Z</dc:date>
    </item>
  </channel>
</rss>

