<?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 Dynamic field lenth in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-lenth/m-p/2234335#M481055</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to find the length of a field dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm displaying the output in flat file, with delimiter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;based on the length of field dynamically '|' should come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;05562031|26/07/2006|31/12/9999|P|12 Sanderling Rise                    |&lt;/P&gt;&lt;P&gt;0753||31/12/9999|| Jackdaw Drive                       07562926|26/07/2006|31/12/9999|P|&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I mean based on the field length pipe delimiter should come. if you observe first and second records especially first field length you can cleary identify what i'm exactly looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Experts please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vamsi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 May 2007 14:08:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-08T14:08:06Z</dc:date>
    <item>
      <title>Dynamic field lenth</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-lenth/m-p/2234335#M481055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to find the length of a field dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm displaying the output in flat file, with delimiter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;based on the length of field dynamically '|' should come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;05562031|26/07/2006|31/12/9999|P|12 Sanderling Rise                    |&lt;/P&gt;&lt;P&gt;0753||31/12/9999|| Jackdaw Drive                       07562926|26/07/2006|31/12/9999|P|&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I mean based on the field length pipe delimiter should come. if you observe first and second records especially first field length you can cleary identify what i'm exactly looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Experts please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vamsi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 14:08:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-lenth/m-p/2234335#M481055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T14:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic field lenth</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-lenth/m-p/2234336#M481056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You will have the data in a Internal table, then you will put that in the final one and download it to the faltfile, so before movin git to the internal table move with PIPE symbol&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 14:12:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-lenth/m-p/2234336#M481056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T14:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic field lenth</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-lenth/m-p/2234337#M481057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vamsi,&lt;/P&gt;&lt;P&gt;              Make ur internal table as shown below :&lt;/P&gt;&lt;P&gt;data : begin of i_record occurs 0,&lt;/P&gt;&lt;P&gt;          records type string,&lt;/P&gt;&lt;P&gt;       end of i_record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data  : v_pipe type c value '|'.&lt;/P&gt;&lt;P&gt;LOOP AT I_TAB.&lt;/P&gt;&lt;P&gt;CONCATENATE    I_TAB-matnr&lt;/P&gt;&lt;P&gt;                            I_TAB-mtart&lt;/P&gt;&lt;P&gt;                            I_TAB-meins&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                             INTO I_record-RECORD SEPARATED BY V_PIPE.&lt;/P&gt;&lt;P&gt;APPEND i_record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Download this data usinf FM 'gui_download'  and the internal table i_record in to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hemant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 14:15:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-lenth/m-p/2234337#M481057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T14:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic field lenth</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-lenth/m-p/2234338#M481058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vamsi,&lt;/P&gt;&lt;P&gt;                  write ENDLOOP after appending i_record.&lt;/P&gt;&lt;P&gt;I forgot to write in previous thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hemant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 14:18:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-lenth/m-p/2234338#M481058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T14:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic field lenth</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-lenth/m-p/2234339#M481059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vamsi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are trying to find out the length of a field and not the content you can use the &lt;/P&gt;&lt;P&gt;following abap statement for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE FIELD d_ntype-tdata LENGTH d_len IN CHARACTER MODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aravind&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 14:26:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-lenth/m-p/2234339#M481059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T14:26:58Z</dc:date>
    </item>
  </channel>
</rss>

