<?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: SO_SPLIT_FILE_AND_PATH in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-split-file-and-path/m-p/2886366#M678005</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;report ztest_hy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: file(255), path(100), name(100) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;file = 'c:\desktop\ file.doc'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SO_SPLIT_FILE_AND_PATH'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FULL_NAME           = file&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   STRIPPED_NAME       = name&lt;/P&gt;&lt;P&gt;   FILE_PATH           = path&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  X_ERROR             = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS              = 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the test program i have just written. i tested, it is working fine. probably u have give '/'  instead of '\'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Sep 2007 07:25:24 GMT</pubDate>
    <dc:creator>hymavathi_oruganti</dc:creator>
    <dc:date>2007-09-26T07:25:24Z</dc:date>
    <item>
      <title>SO_SPLIT_FILE_AND_PATH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-split-file-and-path/m-p/2886364#M678003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;The FM  SO_SPLIT_FILE_AND_PATH is used to separate a file and directory.&lt;/P&gt;&lt;P&gt;That means if i give full path of a file ,it will separate the directory name and file name in to two return variables.But it is not working in ECC6.0.If i run in SE37 directly it is working.But if i call that i my ABAP pgm it is giving SY-subrc = 0 after exicuting..but it is not showing any data for filename variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body tell me any alternative for this in ECC6.0?&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;Ravi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 07:16:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-split-file-and-path/m-p/2886364#M678003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T07:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: SO_SPLIT_FILE_AND_PATH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-split-file-and-path/m-p/2886365#M678004</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;try this FM  TRINT_SPLIT_FILE_AND_PATH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 07:24:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-split-file-and-path/m-p/2886365#M678004</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-09-26T07:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: SO_SPLIT_FILE_AND_PATH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-split-file-and-path/m-p/2886366#M678005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;report ztest_hy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: file(255), path(100), name(100) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;file = 'c:\desktop\ file.doc'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SO_SPLIT_FILE_AND_PATH'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FULL_NAME           = file&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   STRIPPED_NAME       = name&lt;/P&gt;&lt;P&gt;   FILE_PATH           = path&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  X_ERROR             = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS              = 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the test program i have just written. i tested, it is working fine. probably u have give '/'  instead of '\'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 07:25:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-split-file-and-path/m-p/2886366#M678005</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2007-09-26T07:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: SO_SPLIT_FILE_AND_PATH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-split-file-and-path/m-p/2886367#M678006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead try Function Module "TRINT_SPLIT_FILE_AND_PATH"&lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jul 2015 05:03:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-split-file-and-path/m-p/2886367#M678006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-07-08T05:03:20Z</dc:date>
    </item>
  </channel>
</rss>

