<?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 Invoice split in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/invoice-split/m-p/3140511#M746357</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;On What  Basis Invoice will split in SD...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what are the basic considerations to take for the split. in header( vbrk) level and also item level (vbrp).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here  Invoice is Spliting for what basis we don't Know .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the fields and values are every thing is correct here and also we checked ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here we saw only the billing date is different but in some  invoices are not spliting even though the billing date is different... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Dec 2007 07:49:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-11T07:49:13Z</dc:date>
    <item>
      <title>Invoice split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/invoice-split/m-p/3140511#M746357</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;On What  Basis Invoice will split in SD...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what are the basic considerations to take for the split. in header( vbrk) level and also item level (vbrp).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here  Invoice is Spliting for what basis we don't Know .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the fields and values are every thing is correct here and also we checked ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here we saw only the billing date is different but in some  invoices are not spliting even though the billing date is different... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 07:49:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/invoice-split/m-p/3140511#M746357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T07:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Invoice split</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/invoice-split/m-p/3140512#M746358</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;It splits the file name with extension AND the Path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If Filename is C:\documents and settings\folder\filename.txt&lt;/P&gt;&lt;P&gt;&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 = "Your Entire Filename of Type FULL_NAME"&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;STRIPPED_NAME = "Your FileName" "i.e.Filename.txt&lt;/P&gt;&lt;P&gt;FILE_PATH = "Your File Path" "C:\documents and settings\folder&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;For simpler understanding. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to SE37, Enter SO_SPLIT_FILE_AND_PATH and execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In next screen, give any file name and path in your system eg \Documents and Settings\USR\Desktop\test.txt ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and execute. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can see results for yourself. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can also test other simple funtional modules for yourself like simlar way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award me. If helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chandra Sekhar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 07:57:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/invoice-split/m-p/3140512#M746358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T07:57:44Z</dc:date>
    </item>
  </channel>
</rss>

