<?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: Residual items processing in FI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/residual-items-processing-in-fi/m-p/1294443#M156423</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first thing is SAP closed an invoice only if it's fully paid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you have an invoice for $100, you'll be able to close it only if you post a payment for $100. If you can post a payment for only $80, the system won't close the invoice, only when the rest of payment'll be posted it'll be closed. In this case the system'll post a document for a partial payment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the situation'll be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- The invoice is open&lt;/P&gt;&lt;P&gt;- A partial payment for £80 is posted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both these two documents are open so you can find them in BSID (Secondary Index for Customers) table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The link between two document is created by fields REBZG,&lt;/P&gt;&lt;P&gt;REBZJ and REBZZ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the number and fyscal year of invoice are 100 and 2006:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Select the invoice:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: INVOICE LIKE BSID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM BSID INTO INVOICE&lt;/P&gt;&lt;P&gt;                   WHERE BUKRS = &lt;/P&gt;&lt;P&gt;                     AND GJAHR = '2006'&lt;/P&gt;&lt;P&gt;                     AND BELNR = '0000000100'.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Select the partial payment&lt;/P&gt;&lt;P&gt;SELECT * FROM BSID WHERE BUKRS = INVOICE-BUKRS&lt;/P&gt;&lt;P&gt;                     AND KUNNR = INVOICE-KUNNR&lt;/P&gt;&lt;P&gt;                     AND REBZG = INVOICE-BELNR&lt;/P&gt;&lt;P&gt;                     AND REBZJ = INVOICE-GJAHR&lt;/P&gt;&lt;P&gt;                     AND REBZZ = INVOICE-BUZEI&lt;/P&gt;&lt;P&gt;ENDSELECT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the situation if your company uses the standard partial payment, of course.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you should ask how the company uses to manage the partial payment as it could use a not standard flow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 21 May 2006 06:57:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-21T06:57:48Z</dc:date>
    <item>
      <title>Residual items processing in FI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/residual-items-processing-in-fi/m-p/1294441#M156421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  For my program, I have to check for fully paid customer invoices and send a flag to another system if it is  fully paid. I have to check whether an invoice is closed with residual payments also, if residual items are present for an invoice I should not send the flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm quite new to FI, so please guide me:&lt;/P&gt;&lt;P&gt;1. How to check whether residual items are present for a closed invoice?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. To test,how can I do an incoming payment with  residual items? (I heard if we pay $80 for a $100 invoice using the residue option, SAP will close the invoice as a fully paid invoice and create another invoice for $20) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. How will be the original invoice and the invoice created for the residual amounts be linked? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Can anyone provide me a link or document containing FI basics?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.Can anyone provide me all FI related transactions and tables?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anyone can guide me, it will be really helpful. Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 May 2006 06:16:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/residual-items-processing-in-fi/m-p/1294441#M156421</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-21T06:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: Residual items processing in FI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/residual-items-processing-in-fi/m-p/1294442#M156422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the following links.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.allsaplinks.com/tables.html" target="test_blank"&gt;http://www.allsaplinks.com/tables.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/tables.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/tables.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/sap-download/sap-tables.zip" target="test_blank"&gt;http://www.sap-img.com/sap-download/sap-tables.zip&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check the following link for FI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/sapfunc/fi.htm" target="test_blank"&gt;http://www.sapgenie.com/sapfunc/fi.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Praneeth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If helpful award points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 May 2006 06:55:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/residual-items-processing-in-fi/m-p/1294442#M156422</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-21T06:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Residual items processing in FI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/residual-items-processing-in-fi/m-p/1294443#M156423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first thing is SAP closed an invoice only if it's fully paid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you have an invoice for $100, you'll be able to close it only if you post a payment for $100. If you can post a payment for only $80, the system won't close the invoice, only when the rest of payment'll be posted it'll be closed. In this case the system'll post a document for a partial payment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the situation'll be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- The invoice is open&lt;/P&gt;&lt;P&gt;- A partial payment for £80 is posted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both these two documents are open so you can find them in BSID (Secondary Index for Customers) table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The link between two document is created by fields REBZG,&lt;/P&gt;&lt;P&gt;REBZJ and REBZZ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the number and fyscal year of invoice are 100 and 2006:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Select the invoice:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: INVOICE LIKE BSID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM BSID INTO INVOICE&lt;/P&gt;&lt;P&gt;                   WHERE BUKRS = &lt;/P&gt;&lt;P&gt;                     AND GJAHR = '2006'&lt;/P&gt;&lt;P&gt;                     AND BELNR = '0000000100'.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Select the partial payment&lt;/P&gt;&lt;P&gt;SELECT * FROM BSID WHERE BUKRS = INVOICE-BUKRS&lt;/P&gt;&lt;P&gt;                     AND KUNNR = INVOICE-KUNNR&lt;/P&gt;&lt;P&gt;                     AND REBZG = INVOICE-BELNR&lt;/P&gt;&lt;P&gt;                     AND REBZJ = INVOICE-GJAHR&lt;/P&gt;&lt;P&gt;                     AND REBZZ = INVOICE-BUZEI&lt;/P&gt;&lt;P&gt;ENDSELECT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the situation if your company uses the standard partial payment, of course.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you should ask how the company uses to manage the partial payment as it could use a not standard flow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 May 2006 06:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/residual-items-processing-in-fi/m-p/1294443#M156423</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-21T06:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: Residual items processing in FI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/residual-items-processing-in-fi/m-p/1294444#M156424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What would the logic be for Residual payments&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Oct 2006 14:04:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/residual-items-processing-in-fi/m-p/1294444#M156424</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-07T14:04:26Z</dc:date>
    </item>
  </channel>
</rss>

