<?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 Re: unicode error:The structure does not start with a character-type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-the-structure-does-not-start-with-a-character-type/m-p/9464109#M1742899</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the use of keyword LENGTH along with TRANSFER keyword. Something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TRANSFER ST_XML(L_SIZE) TO FILENAME &lt;/STRONG&gt;&lt;SPAN class="qtext"&gt;LENGTH len.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="qtext"&gt;Should help&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="qtext"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="qtext"&gt;Arindam&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 May 2013 23:47:28 GMT</pubDate>
    <dc:creator>arindam_m</dc:creator>
    <dc:date>2013-05-16T23:47:28Z</dc:date>
    <item>
      <title>unicode error:The structure does not start with a character-type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-the-structure-does-not-start-with-a-character-type/m-p/9464107#M1742897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing UCCHECK for the programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And facing an error and not able to solve.&lt;/P&gt;&lt;P&gt;I searched in SDN and also tried my own but no luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in one program they written statement as: &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TRANSFER ST_XML(L_SIZE) TO FILENAME&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the error is &lt;STRONG&gt;The structure "ST_XML(L_SIZE)" does not start with a character-type&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;the data declarations is as follows. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XML&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE DCXMLLINES,&lt;BR /&gt;&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; L_SIZE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE I.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DATA: BEGIN OF ST_XML,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; D LIKE LINE OF XML,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END OF ST_XML.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How i need to correct the statement &lt;STRONG&gt;transfer&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2013 06:20:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-the-structure-does-not-start-with-a-character-type/m-p/9464107#M1742897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-16T06:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error:The structure does not start with a character-type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-the-structure-does-not-start-with-a-character-type/m-p/9464108#M1742898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use offset-length on field of structure instead of the structure itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change statement to this:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52" style="font-family: courier new,courier;"&gt;TRANSFER ST_XML&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;D&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;L_SIZE&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;FILENAME&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2013 08:52:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-the-structure-does-not-start-with-a-character-type/m-p/9464108#M1742898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-16T08:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error:The structure does not start with a character-type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-the-structure-does-not-start-with-a-character-type/m-p/9464109#M1742899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the use of keyword LENGTH along with TRANSFER keyword. Something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TRANSFER ST_XML(L_SIZE) TO FILENAME &lt;/STRONG&gt;&lt;SPAN class="qtext"&gt;LENGTH len.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="qtext"&gt;Should help&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="qtext"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="qtext"&gt;Arindam&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2013 23:47:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-the-structure-does-not-start-with-a-character-type/m-p/9464109#M1742899</guid>
      <dc:creator>arindam_m</dc:creator>
      <dc:date>2013-05-16T23:47:28Z</dc:date>
    </item>
  </channel>
</rss>

