<?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: function SPLIT_LINE not working as expected in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542391#M1657475</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 fm SPLIT_LINE in SE37 test mode (F8). It will work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My test parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TEXT&lt;/STRONG&gt; &lt;EM&gt;SDFVHKWHFVKWHFKJWHFKHWEFKHFKHFKWHKFWHFKWHFHKWEFFHKWEHFKHKFWEHFHKWHFKWEFHKWEFHKFEHKFHKFHKWEHFKHEWKFHKWEH&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LEN&lt;/STRONG&gt; &lt;EM&gt;160&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MAXLEN&lt;/STRONG&gt; &lt;EM&gt;50&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SEPARATOR&lt;/STRONG&gt; &lt;EM&gt;~&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other parameters with default value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Feb 2012 11:21:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-02-22T11:21:41Z</dc:date>
    <item>
      <title>function SPLIT_LINE not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542389#M1657473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a BDC to upload Long Text of CJ20N along with the Dates. For this first the editable ALV is used where in the User can enter Long Text. It is working fine. I have used the below FM to split the text after every 50 characters but it is not working properly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SPLIT_LINE'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          TEXT       = W_TEMPUPLOAD-REM  " Long Text&lt;/P&gt;&lt;P&gt;          LEN        = TLEN   " Total Length of String&lt;/P&gt;&lt;P&gt;          MAXLEN     = 50&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          RESULT_TAB = LT_RESULT_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      L_LINES-TDFORMAT = ''.&lt;/P&gt;&lt;P&gt;      L_LINES-TDLINE = ''.&lt;/P&gt;&lt;P&gt;      APPEND L_LINES .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is breaking text of length 128 from 42 ,50,34 characters one by one . It is not working fine. also it is not uploading it correctly . Say for eg the word 'asked' is written then it is uploading 'aske'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me in this matter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bharti Jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 11:01:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542389#M1657473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-22T11:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: function SPLIT_LINE not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542390#M1657474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bharati,&lt;/P&gt;&lt;P&gt;Kindly try to use TR_SPLIT_TEXT. This will work perfectly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lv_text(140),&lt;/P&gt;&lt;P&gt;        lt_lines TYPE trtexts,&lt;/P&gt;&lt;P&gt;        ls_line  TYPE trtext.&lt;/P&gt;&lt;P&gt;lv_text =  'TEST123456789'.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'TR_SPLIT_TEXT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    IV_TEXT        = lv_text&lt;/P&gt;&lt;P&gt;   IV_LEN         = 10&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   ET_LINES       = lt_lines&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at lt_lines into ls_line.&lt;/P&gt;&lt;P&gt;  write: ls_line.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br,&lt;/P&gt;&lt;P&gt;Vijay V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 11:14:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542390#M1657474</guid>
      <dc:creator>vijaymanikandan</dc:creator>
      <dc:date>2012-02-22T11:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: function SPLIT_LINE not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542391#M1657475</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 fm SPLIT_LINE in SE37 test mode (F8). It will work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My test parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TEXT&lt;/STRONG&gt; &lt;EM&gt;SDFVHKWHFVKWHFKJWHFKHWEFKHFKHFKWHKFWHFKWHFHKWEFFHKWEHFKHKFWEHFHKWHFKWEFHKWEFHKFEHKFHKFHKWEHFKHEWKFHKWEH&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LEN&lt;/STRONG&gt; &lt;EM&gt;160&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MAXLEN&lt;/STRONG&gt; &lt;EM&gt;50&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SEPARATOR&lt;/STRONG&gt; &lt;EM&gt;~&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other parameters with default value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 11:21:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542391#M1657475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-22T11:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: function SPLIT_LINE not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542392#M1657476</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;I have created a demo.&lt;/P&gt;&lt;P&gt;You can refer this and create your own FM for this purpose - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: po_text TYPE char255,
            po_len  TYPE i.
DATA: wa_line TYPE char255,
      i_line TYPE STANDARD TABLE OF char255.

DATA: w_length TYPE i,
      w_mod TYPE i,
      w_count TYPE i.

w_length = STRLEN( po_text ).
w_mod = w_length mod po_len.
w_count = w_length / po_len.
IF ( w_mod NE 0 ).
  w_count = w_count + 1.
ENDIF.

CLEAR: w_mod.
DO w_count TIMES.
  wa_line = po_text+w_mod(po_len).
  APPEND wa_line TO i_line.
  w_mod = w_mod + po_len.
ENDDO.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harsh Bansal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 11:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542392#M1657476</guid>
      <dc:creator>Harsh_Bansal</dc:creator>
      <dc:date>2012-02-22T11:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: function SPLIT_LINE not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542393#M1657477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks For Replying,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the below text:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Order placed for Gualcheirani Baler. Civil structural drawing being prepared and vendor asked to resolve the issue as soon as possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After upload it will be as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Order placed for Gualcheirani Baler. Civil structural drawin being prepared and vendor aske to resolve the issue as soon as   possible.       " Consider drawing and asked word before and after upload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After upload when I see in CJ20N&lt;/P&gt;&lt;P&gt;then it will be as below:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Order placed for Gualcheirani Baler. Civil&lt;/P&gt;&lt;P&gt; structural drawin being prepared and vendor aske&lt;/P&gt;&lt;P&gt; to resolve the issue as soon as possible&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bharti Jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 11:55:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542393#M1657477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-22T11:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: function SPLIT_LINE not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542394#M1657478</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;Text is coming like this after you split it using your SPLIT_LINE FM??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the code i have provided. I have tested it with your text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harsh Bansal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 12:17:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542394#M1657478</guid>
      <dc:creator>Harsh_Bansal</dc:creator>
      <dc:date>2012-02-22T12:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: function SPLIT_LINE not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542395#M1657479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt; It is not working fine. also it is not uploading it correctly . Say for eg the word 'asked' is written then it is uploading 'aske'.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, you need to fix the problem with the upload first, then try the split line FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 14:18:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542395#M1657479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-22T14:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: function SPLIT_LINE not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542396#M1657480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try to use the FM .TR_SPLIT_TEXT. ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 15:01:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542396#M1657480</guid>
      <dc:creator>vijaymanikandan</dc:creator>
      <dc:date>2012-02-22T15:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: function SPLIT_LINE not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542397#M1657481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With FM 'TR_SPLIT_TEXT' the text is splitting properly but I also want to save it in CJ20N. I have used FM 'CREATE_TEXT' for it. But it is now giving dump because ET_LINES of TR_SPLIT_TEXT FM is not a structure or an internal table it is a line type so I cannot pass it in FLINES for FM  'CREATE_TEXT' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me in this matter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bharti Jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 03:42:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542397#M1657481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-23T03:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: function SPLIT_LINE not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542398#M1657482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Try this as below and pass gt_tdline into your CREATE_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:       gt_tdline TYPE STANDARD TABLE OF tline,&lt;/P&gt;&lt;P&gt;      gs_tdline TYPE tline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lv_text(140),&lt;/P&gt;&lt;P&gt;lt_lines TYPE trtexts,&lt;/P&gt;&lt;P&gt;ls_line TYPE trtext.&lt;/P&gt;&lt;P&gt;lv_text = 'TEST123456789'.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'TR_SPLIT_TEXT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;IV_TEXT = lv_text&lt;/P&gt;&lt;P&gt;IV_LEN = 10&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;ET_LINES = lt_lines&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at lt_lines into ls_line.&lt;/P&gt;&lt;P&gt;write: ls_line.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at lt_lines into ls_line.&lt;/P&gt;&lt;P&gt;move ls_line to gs_tdline-tdline.&lt;/P&gt;&lt;P&gt;gs_tdline-tdformat = '*'.&lt;/P&gt;&lt;P&gt;APPEND gs_tdline TO gt_tdline.&lt;/P&gt;&lt;P&gt;endloop.&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;Vijay V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 06:10:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542398#M1657482</guid>
      <dc:creator>vijaymanikandan</dc:creator>
      <dc:date>2012-02-23T06:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: function SPLIT_LINE not working as expected</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542399#M1657483</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;Refer this - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: po_text TYPE STRING,
            po_len  TYPE i.
DATA: wa_line TYPE char255,
      i_line TYPE STANDARD TABLE OF char255.

DATA: w_length TYPE i,
      w_mod TYPE i,
      w_count TYPE i,
      w_check TYPE i.

w_length = STRLEN( po_text ).
w_mod = w_length mod po_len.
w_count = w_length / po_len.
IF ( w_mod NE 0 ).
  w_count = w_count + 1.
ENDIF.

CLEAR: w_mod.
DO w_count TIMES.
  w_check = w_mod + po_len.
  IF w_check GT w_length.
    po_len = w_length - w_mod.
  ENDIF.
  wa_line = po_text+w_mod(po_len).
  APPEND wa_line TO i_line.
  w_mod = w_mod + po_len.
ENDDO.

CALL FUNCTION 'CREATE_TEXT'
  EXPORTING
    fid               = 'AVOT'
    flanguage         = 'E'
    fname             = 'WA_AFVC-CON3'
    fobject           = 'AUFK'
*   SAVE_DIRECT       = 'X'
*   FFORMAT           = '*'
  tables
    flines            = i_line
* EXCEPTIONS
*   NO_INIT           = 1
*   NO_SAVE           = 2
*   OTHERS            = 3
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change details in Create_text according to your need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harsh Bansal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 06:12:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-split-line-not-working-as-expected/m-p/8542399#M1657483</guid>
      <dc:creator>Harsh_Bansal</dc:creator>
      <dc:date>2012-02-23T06:12:57Z</dc:date>
    </item>
  </channel>
</rss>

