<?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 error when trying to split in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-trying-to-split/m-p/3773895#M908114</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;DATA: lv_zbnkl(8) TYPE c.&lt;/P&gt;&lt;P&gt;Data: l_chr(15)  type c.  ß-- NUMBER is SAME AS zbnkl LENGTH&lt;/P&gt;&lt;P&gt;Write i_reguh.-zbnkl to l_chr&lt;/P&gt;&lt;P&gt;IF L_CHR CA '-'.&lt;/P&gt;&lt;P&gt;    SPLIT L_CHR  AT '-' INTO lv_zbnkl.----&amp;gt;error&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using above code but it is throwing an eror saying that unable to interpret lv_zbankl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Apr 2008 14:01:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-22T14:01:22Z</dc:date>
    <item>
      <title>error when trying to split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-trying-to-split/m-p/3773895#M908114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;DATA: lv_zbnkl(8) TYPE c.&lt;/P&gt;&lt;P&gt;Data: l_chr(15)  type c.  ß-- NUMBER is SAME AS zbnkl LENGTH&lt;/P&gt;&lt;P&gt;Write i_reguh.-zbnkl to l_chr&lt;/P&gt;&lt;P&gt;IF L_CHR CA '-'.&lt;/P&gt;&lt;P&gt;    SPLIT L_CHR  AT '-' INTO lv_zbnkl.----&amp;gt;error&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using above code but it is throwing an eror saying that unable to interpret lv_zbankl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 14:01:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-trying-to-split/m-p/3773895#M908114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T14:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: error when trying to split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-trying-to-split/m-p/3773896#M908115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U need to have atleast 2 variables .. when U split ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write as ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT L_CHR AT '-' INTO lv_zbnkl  lv_zbnkl1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 14:04:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-trying-to-split/m-p/3773896#M908115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T14:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: error when trying to split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-trying-to-split/m-p/3773897#M908116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi prince you r splitting a value into two ...but you specified the variables only one..al the end of the statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT L_CHR AT '-' INTO lv_zbnkl &lt;STRONG&gt;and some field is required&lt;/STRONG&gt; here..&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;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 14:06:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-trying-to-split/m-p/3773897#M908116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T14:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: error when trying to split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-trying-to-split/m-p/3773898#M908117</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;do this way...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data : lv_other(10).

IF L_CHR CA '-'.
SPLIT L_CHR AT '-' INTO lv_zbnkl lv_other.
endif.

write : lv_zbnkl, lv_other. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 14:07:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-trying-to-split/m-p/3773898#M908117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T14:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: error when trying to split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-trying-to-split/m-p/3773899#M908118</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;Correct your code which is highted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lv_zbnkl(8) TYPE c.&lt;/P&gt;&lt;P&gt;*DATA: lv_zbnkl_extra(7).*&lt;/P&gt;&lt;P&gt;Data: l_chr(15) type c. ß-- NUMBER is SAME AS zbnkl LENGTH&lt;/P&gt;&lt;P&gt;Write i_reguh.-zbnkl to l_chr&lt;/P&gt;&lt;P&gt;IF L_CHR CA '-'.&lt;/P&gt;&lt;P&gt;SPLIT L_CHR AT '-' INTO lv_zbnkl &lt;STRONG&gt;lv_zbnkl_extra&lt;/STRONG&gt;.----&amp;gt;error&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 14:11:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-trying-to-split/m-p/3773899#M908118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T14:11:17Z</dc:date>
    </item>
  </channel>
</rss>

