Turning Open items which are partially payed into Close items.. How?

Hello,
In our company we use partial payment to Vendors using transaction F-59 and also automatic paymant of full amounts. Everything is working correctly but since we use very offen partial way of paymant, on transaction FBL1N I have a lot of open items and most of the time I don't know exactly how much do I own to vendor(s).
To explain it easier I will show one simple example:
1. I own to one of my vendors amount Eur 10.000
2. Using transaction F-59 (partial payment) I pay him Eur 3.000
3. When I open transaction FBL1N for that vendor and if I choose to show only Open items
total amount shows me that I own him Eur 10.000 instead of due amount 7.000
I understand that total amount of Eur 10.000 instead of Eur 7.000 is shown because we use partial instead of residual way of paymant but I would like to know is there any way I could manually turn these Eur 3.000 into close item because they are already payed?
Searching through Internet I found that transaction F-44 could be used for similar but I am not sure it can do exactly what I need: to turn all partial payed open items to close items so for each vendor then I could see exact amount I own them.
I hope someone can help me with this because I must solve it ASAP and it's slowing me down at my workplace and it would be great if I could manually close some open items, because they are already payed.
Greetings,
Adi
Moderator: Please, try searching before posting a new thread. Clearing issues are well described on these forums
Edited by: samnovice on Jul 30, 2011 3:50 PM

Hi:
     Knocking off invoices against partial payments in F-44 is a standard procedure that is used to clear open item outstanding in Vendor ledger FBL1N. You should ideally clear partial payment in Residual Tab of F-44 and for remaining amount e.g 7 in your case you should double click in residual item column next to amount. By doing so system will also copy the original invoice reference to the partial document AB (with 7 amount) as per setting defined in OBA0 for residual item clearing.
Line item 10 and its payment line item 3 are standing open in ledger because you did not apply them in F-44. You could have also directly apply them in F-59 of F-53. Partial document will be generated with document type as per setting you have defined in OBXH. Hope this will clear your understanding.
Regards

Similar Messages

  • Open PO's which are partially delivered

    Hi all,
    can anybody tell me how to get the open po's which are partially delivered.

    http://oracle.anilpassi.com/encumbrance-migration-to-oracle-grants-for-open-purchase-orders.html
    http://www.csun.edu/sponsoredprograms/2.2.5%20Purchase%20Order/Purchase_Order.htm
    http://groups.google.co.in/group/microsoft.public.access/browse_thread/thread/5cb8405ba5bd7911/79c4c574d876dd3f?hl=en&lnk=st&q=howtoopenpurchaseorderswhicharepartiallydelivered#79c4c574d876dd3f
    check these they may be use ful.
    Regards,
    Muneesh Gitta.

  • PO items which are not GRed

    Hello.
    I have a requirement wherein I need to print all the PO item which are not fully goods receipt ( open goods receipt qty). Can some one let me know exact logic and table from where data can be picked.
    Thank you!
    Arvind

    Hi,
    You can check in table EKPO field: WEPOS     WEPOS     CHAR     1     0     Goods Receipt Indicator
    which shows if item is GRed or not.
    Also check the following and use whichever is apt.
    ELIKZ     ELIKZ     CHAR     1     0     "Delivery Completed" Indicator
    EREKZ     EREKZ     CHAR     1     0     Final Invoice Indicator
    TWRKZ     TWRKZ     CHAR     1     0     Partial Invoice Indicator
    Regards,
    Karthik

  • I'm trying to open files which are telling me to instal Adobe Reader.  Which I did but the agreement which needs to be ticked off so this reader can open doesn't come up.  Please could you be of some assistance.

    I'm trying to open files which are telling me to instal Adobe Reader.  Which I did but the agreement which needs to be ticked off so this reader can open doesn't come up.  Please could you be of some assistance.

    Select one of the files, Choose GetInfo from the Finder's File menu, look for the field named "Open With", and choose Preview from the adjacent menu. Accept that ALL such files will Open with Preview, and your major problems should be solved.
    Occasionally, a particularly complex .pdf file or one that needs to be modified and re-written will not work quite right with Preview, but such issues are rare.

  • With a wired keyboard and a 2014 iMac I cannot select multiple items which are not next to each other

    I have recently changed from Windows 7 desktop to a new iMac running Mavericks.  I have chosen a wired keyboard as I like  the usual Delete key function.
    I cannot find out how to select several items which are not next to each other (e.g. words in Pages).  The well known method in Windows, which is repeated in the the Apple Finder Help screen, does not work.  Would be grateful for advice

    Hi JBowfin,
    If I am understanding your question correctly, I believe that I have an article that will address this question for you:
    Mac OS X 10.0: Use Command Key to Select Multiple Items in List and Column Views
    http://support.apple.com/kb/TA20396
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • Setting ToolTips for items which are disabled.

    Folks,
    No offence meant if this is a repeat.
    I have a JPopupMenu with Action as its components.
    1) I have disabled certain menu items to false.
    2) I would like to use a ToolTipText to show a message 'You have no permission'
    when the user hovers over the menu items which are disabled/set to false
    3) I wrote my own ToolTipText,but what is happening is that I am getting the tool tip text
    for all menu items.
    Please can anyone help me in how to get tooltiptext for menu items which are enabled to false?
    Help much appreciated
    // JPopupMenu
    JPopupMenu pm = new JPopupMenu();
    // Add Action
    pm.add(new GraphAction());      
    pm.add(new DescendantsAction());
    pm.add(new DebugAction()).setEnabled(false);
    ToolTipTextForMenuItems.setToolTipForIndividualItem(pm.getComponent()) // Does not display any Tool Tip.
    pm.add(new ResetAction()).setEnabled(false);
    ToolTipTextForMenuItems.setToolTipTextForMenuItem(pm); // Shows ToolTipText for all menu items (disabled and enabled)
    ToolTip Code
    public class ToolTipTextForMenuItems {
    private static final String TOOL_TIP_TEXT = "You have no permission";
         public static void setToolTipTextForMenuItem(JPopupMenu popupMenu){
                 for (int i=0; i<popupMenu.getComponentCount(); i++){
                    Component c = popupMenu.getComponent(i);
                    if (c instanceof JComponent) {
                              ((JComponent)c).setToolTipText(TOOL_TIP_TEXT);
         public static void setToolTipForIndividualItem(Component c){
               if (c instanceof JComponent) {
                         ((JComponent)c).setToolTipText(TOOL_TIP_TEXT);
    }

    Yes,I have looked at the Abstract Action code sent in
    I have not used Action and Abstract Action before,hence if you can/could just
    modify this as per my requirement,then I can enhance on this.
    No offence meant for the above
    Thanks

  • Deleting items which are cheked in CheckBox

    Hi
    I am deleting some items which are checked by the user in the check box.
    If user checks 3 items and click delete, I should delete all the items which are checked.
    help me in solving this issue.
    Sample code will be very helpful.
    Thanks
    soori

    hi there :))
    in the page u have:
    <f:view>
        <h:form>
            <h:selectManyCheckbox layout="lineDirection" value="#{userBean.result}">
                <f:selectItems value="#{userBean.data}" />
            </h:selectManyCheckbox>
            <h:commandButton value="Submit" action="#{userBean.action}"/>
        </h:form>
    </f:view>UserBean class:
            private String result[];
         private HashMap data;
         public String action() {
              if (result.length > 2) {
                   for (String res : result) {
                        data.remove(res);
              return "";
         public HashMap getData() {
              if (data == null) {
                   data = new HashMap();
                   data.put("1", "1");
                   data.put("2", "2");
                   data.put("3", "3");
                   data.put("4", "4");
                   data.put("5", "5");
              return data;
         public String[] getResult() {
              return result;
         public void setResult(String[] result) {
              this.result = result;
         }in action method u check how many check boxes are clicked and if they`re more then 2 u delete them from the HashMap

  • I want to install an old airport express, the ones which are directly plugged into the socket - but it does not work with Maverick or Snow Leopard - can I configure it with a windows pc?

    I want to install an old airport express, the ones which are directly plugged into the socket - but it does not work with Maverick or Snow Leopard - can I configure it with a windows pc?

    The Mac running Snow Leopard should be able to configure virtually any version of the AirPort Express.
    Tell us what steps that you are taking to configure the Express and what happens after each step.

  • I only want itunes to hold the lossless files which are in two different folders. How do I do that?

    I have thousands of MP3 files which I no longer use and which are in my itunes library.
    I want itunes (version 11) to have in it's library only the MS Lossless format and the ALAC lossless format which are in two different folders. How do I achieve this?

    Delete the files you don't want, or cut & paste them to an alternate location if you want to archive them.
    What MS Lossless format? .wav?
    iTunes doesn't have any custom organization features, but you can change the location of the media folder and then selectively consolidate content to the new folder. This creates copies so you have to manually delete the originals. Alternatively I have a script called ConsolidateByMoving which does what it suggests. Thiis could be used to split the media into parallel subfolders within your existing media folder if you disable iTunes "Keep iTunes Media folder organized" option.
    tt2

  • I have a new Apple TV which is working fine except that I cannot access .mov files which are in my iTunes Library. How can I get to these? I can run them on my computer and select Apple TV on the screen, but the Apple TV goes to a black screen

    I have a new Apple TV which is working fine except that I cannot access .mov files which are in my iTunes Library. How can I get to these? I can run them on my computer and select Apple TV on the screen, but the Apple TV goes to a black screen

    Mov is a container format, you'd need to look at the codec used by the movie file inside the container to know whether it will work with the Apple TV or not.

  • My hard wear and soft wear crashed, did a backup on all my files.When I now open them the are all "preview"!!! How do I get my old documents back? it should be pages, and numbers, ight now I can't work with them

    My hard wear and soft wear crashed, did a backup on all my files.
    When I now open them the are all "preview"!!!
    How do I get my old documents back? it should be pages, and numbers, right now I can't work with them

    Reinstall OS X

  • How can I get a birthday reminder from items which are in the read-only cal

    I am looking for a solution to get a reminder message for birtdays which are within the read-only calender imported/updated from he address book. I so far have not found the option where to turn on the reminder and I do not want to duplicate items (ie creating another birthday calender inside iCal).
    Thanks for comments.
    PB G4 Ti, 1GHz, 10.2.8   Mac OS X (10.4.7)  

    Hi ontour,
    This limitation is one of the many reasons I wrote Dates to iCal. It is a replacement for the Birthdays calendar in iCal, so you would need to turn the Birthdays calendar off in iCal's preferences.
    See here: http://discussions.apple.com/thread.jspa?threadID=466478
    Best wishes
    John M

  • How do i check the list of invoices which are not posted into sap.

    Hi All,
    Iam displaying(ALV) the list of invoices and epayments for both PO & non PO transactons which are being processed in workflow but not posted in sap.
    (Non po transaction is th eone with out reference of a PO)
    How to check and list out the invoices that are not posted in sap. where does this get stored.
    please help.
    Thanks
    jyothi.

    Hello Jyothi,
    U can give try with EKBE table for getting invoices for PO. In this table there is a field vgabe which has various status. U can try that. Now for Non PO, u would be directly creating invoice doucment using FB60(i guess) which would create an entry directly into BKPF/BSEG. U can scan BKPF for the date range company code document type KR which vendor invoice.

  • GL display for inventory account which are not defined as line item display

    Hi All,
    We have inventory gl accounts which are auto post accounts , these accounts get posted when grn is done. these accounts are not defined as line item display accounts, but if we execute the T code: FS10 we get the gl balance display and not line item display.
    Our requirement is that we should be able to view the line item display matching the GL account balance in that GL account.
    Can we get the report in MM module line items wise display.
    Regards
    Prashant P. Zinge

    Hello,
    You should use RFSEPA01 program via execute SE38 transaction.
    This program activate line item for each account. Activation means, this program generate line items to BSIS table. So that after this program running, you can see line items in FBL3N.
    Regards,
    Burak

  • Service Orders gets saved but text at item level are not saved for all item

    Hi All,
    We have configured service order scenario. The service order gets saved in GUI and in WebUI. But we are facing issue that not all the text entered at item level are getting saved.
    Example if we maintained text for 4 line items and save the SO.
    We open the saved SO, we get only 3 line items with proper text
    one of the line item text is not getting saved.
    The issue happens at both GUI and WebUI.
    Any pointers to fix this issue?
    Thanks and Regards,
    Gauri.

    Hi,
    You can try clearing the buffer using 'CRM_ORDER_INITIALISE' followed by CRM_ORDER_MAINTAIN" or TEXT_SAVE and TEXT_COMMIT, followed by BAPI_TRANSACTION_COMMIT with wait.
    Prerna

Maybe you are looking for

  • Identifying the orginal Doc for reset and reverse documents

    hi, When there is a cheque return from the customer, what is the practice is to reset and reverse the original receipt posted in the system. but the issue is once the original document is reset and reverse there is no way of identifying the invoice d

  • Inquiry status

    my customer want inquiry report withthe different status of sales, how can we give, is there any standard setting can somebody explain me how can we give the same Edited by: varada rajan on Feb 5, 2008 12:42 PM

  • Trying to customize a multiple item lookup field using JSLink

    I'm trying to Customize a multiple item lookup field using JSLink, in SP 2013. This illustrates what I want to do: I can replace the ";" with <br /> in the Text column, but not the Lookup column. Here is the JSLink code I'm using for the Text column.

  • JMS Queue monitoring

    Hi everyone, is there any way to monitor a jms queue with its contained messages ? i'm talking about a tool like the jmx console in jboss - the JMS Adapter and JMS Notification in the Visual Admin only provide some properties. Any suggestions ?

  • Safari 5 won't start on Windows XP SP3

    PLEASE HELP - I just downloaded the new Safari on August 21 and it hasn't started once. I'm running Windows XP Home Edition 2002 SP3. I'm very worried about losing my bookmarks. As long as they can be preserved I don't care what I have to do. There i