FB01 Invoice posting..When & how do this invoice document get cleared...

Hi,
I posted a document in FB01.
when ever i post it
the above document is showing in Open item in FBL1N (t-code).
when& how  to this document show in cleared item..?
Documet type :VI......tried VO,BM,BT
Specification:
Posting invoice  PSKY : 31
Vendor : XXXXXX
towards:
GL account : XXXXXXXX
Debt   PSKY : 40
can Someone help in how to clear this document...!
possible way for automatic payment will be good...
Thanks,
Praveen

Hi Praveen,
U have to understand the functionality of open and cleared line items. When u use posting key 31, u are posting a vendor invoice. Any invoice (or any document for that matter) when posted will have the open status.
Now that invoice will get cleared when it is actually cleared against another document (outgoing payment in ur case)
Goto F-53 and give the required inputs (amount ,vendor number , bank account etc)  and process any of the open items(ie original invoice) in that vendor account. Once that payment document  get posted, it clears the original invoice also. Just test it and u'll understand.
The same can be done in automatic payment also, but u need to do all the customizing in FBZP and then run the program through F110. That also clears the open vendor invoices.
Best Regards
Vimal

Similar Messages

  • Menu option "other invoice document" gets disabled in MIR7 while Recording

    Hi All,
    I have one requirement when I have to open the parked invoice document ( MIRO) with MIR7.
    I don't want to record each and every field and pass the bdcdata then with call transaction.
    There is one option in MIR7 when under invoicedocumnet->other invoice document i can pass the invoice document number and the fiscal year.
    I have the document number and the fiscal year as i have already parked the document with MIRO.
    so i thought to record this and call the transaction then.
    Problem: When i open MIR7 to record, the menu option invoicedocumnet->other invoice document  gets disabled. I am not able to record this.
    Is there any solution to this? Any BAPI exists ??
    Otherwise i would have to record each and every field to pass the parked data into it ..
    Thanks in advance
    Regards
    Mudit Batra

    Hi,
    check this:
    program: SAPLMR1M
    include: LMR1MI3U
    MODULE (PAI) FCODE_6100
      IF ok-code = fcook.
        mir4_change = 'X'.
        SET PARAMETER ID: 'RBN' FIELD rbkpv-belnr,
                          'GJR' FIELD rbkpv-gjahr,
                          'RBS' FIELD rbkpv-rbstat,
                          'CHG' FIELD mir4_change.
        IF sy-tcode = tcode_mir4.
          LEAVE TO TRANSACTION tcode_mir4 AND SKIP FIRST SCREEN.
        ELSE.
          CALL TRANSACTION tcode_mir4 AND SKIP FIRST SCREEN.
        ENDIF.
      ENDIF.
      SET SCREEN 0. LEAVE SCREEN.
    Best regards.

  • Payment document cleared and invoice document number cleared

    Dear experts,
        Could you please help me to locate (table and field name) what is the payment document number clear and invoice document number cleared ?
        In my point of view, the invoice document number is :
              BSAD-BELNR: Customer Invoice document number cleared
             BSAK-BELNR: Vendor Invoice document number cleared
    Is it right ?
    How about the payment document number cleared ?
    How about the relation between these payment document number clear and invoice document number cleared?
    Thank you in advance

    Hi
    You can  see  data  on  invoices   cleared  using  following tables.
    For  customer -  BSAD
    For Vendor  - BSAK
    For   all  invoices ( open and cleared )   it is   BSID  &  BSIK.
    Thanks
    kamala

  • I Have to post data to Odata webservice. In this post I need to pass token header also. I got token value now I have to try to pass Token Header value and Data also but when i do this I'm getting this kind of ERROR: Stream was not readable

      try
                    byte[] auth = Encoding.UTF8.GetBytes("mobtest" + ":" + "welcome1");
                    HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://Server:8000/sap/opu/odata/sap/ZCUST_TESTING_SRV/post_cust");
                    //byte[] byteArray = Encoding.UTF8.GetBytes(postXml);
                    byte[] byteArray = Encoding.ASCII.GetBytes(jsonnew);
                    request.Credentials = new NetworkCredential("mobtest","welcome1");
                    request.ContentType = "application/atom+xml";
                    request.Method = "GET";
                    //request.Headers["Authorization"] = "Basic " + System.Convert.ToBase64String(auth);
                    request.Headers["X-CSRF-Token"] = "Fetch";
                    HttpWebResponse responseH = (HttpWebResponse)request.GetResponse();
                    xToken = responseH.Headers["X-CSRF-Token"];
                    Console.WriteLine("xToken : " + xToken.ToString());
                    responseH.Close();
                    try
                        HttpWebRequest request_post = (HttpWebRequest)WebRequest.Create("http://Server:8000/sap/opu/odata/sap/ZCUST_TESTING_SRV/post_cust");
                        request_post.Credentials = new NetworkCredential("mobtest", "welcome1");
                        request_post.Method = "POST";
                        request_post.Headers["X-CSRF-Token"] = xToken;
                        Console.WriteLine("xToken POST : " + xToken.ToString());
                        request_post.ContentType = "application/json";
                        request_post.Accept = "application/json";
                        request_post.ContentLength = byteArray.Length;
                        Stream dataStream1 = request_post.GetRequestStream();
                        dataStream1.Write(byteArray, 0, byteArray.Length);
                        Console.WriteLine("byteArray : "+byteArray);
                        dataStream1.Close();
                        Console.WriteLine("datastream1");
                        HttpWebResponse response1 = (HttpWebResponse)request.GetResponse();
                        Console.WriteLine("Post response : " + response1.ToString());
                        dataStream1 = response1.GetResponseStream();
                        StreamReader reader1 = new StreamReader(dataStream1);
                        Console.WriteLine("  Console.WriteLine(reader1 : " + reader1);
                        string responseFromServer1 = reader1.ReadToEnd();
                        Console.WriteLine("  Console.WriteLine(responseFromServer1 : " + responseFromServer1);
                        Console.Read();
                        reader1.Close();
                        dataStream1.Close();
                        response1.Close();
                    catch(Exception exp)
                        MessageBox.Show("Post Error : "+exp.Message);
                catch(Exception ex)
                    MessageBox.Show("Error : "+ex.Message);

    Hi Ashwin,
                      That is C# windows application below i mention the XML data and Code also.
    string postXml = @"<?xml version='1.0' encoding='UTF-8'?>"+
    "<entry xml:base='http://serverip:8000/sap/opu/odata/sap/ZCUST_TESTING_SRV/'\n"+"xmlns='http://www.w3.org/2005/Atom'"+
    "xmlns:m='http://schemas.microsoft.com/ado/2007/08/dataservices/metadata'"+
    "xmlns:d='http://schemas.microsoft.com/ado/2007/08/dataservices'>"+
    "<content type='application/xml'>"+
    "<m:properties>"+
    "<d:Kunnr>800DUR298</d:Kunnr>" +
    "<d:Land1>avi</d:Land1>" +
    "<d:Name1>dur</d:Name1>" +
    "<d:Name2>ven</d:Name2>" +
    "<d:Ort01>chennai</d:Ort01>" +
    "<d:Pstlz>500060</d:Pstlz>" +
    "<d:EStatus>X</d:EStatus>"+
    "</m:properties>"+
    " </content>"+
    " </entry>";
      try
                    byte[] auth = Encoding.UTF8.GetBytes("mobtest" + ":" + "welcome1");
                    HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://Server:8000/sap/opu/odata/sap/ZCUST_TESTING_SRV/post_cust");
                    byte[] byteArray = Encoding.UTF8.GetBytes(postXml);
                    request.Credentials = new NetworkCredential("mobtest","welcome1");
                    request.ContentType = "application/xml";
                    request.Method = "GET";
                    request.Headers["X-CSRF-Token"] = "Fetch";
                    HttpWebResponse responseH = (HttpWebResponse)request.GetResponse();
                    xToken = responseH.Headers["X-CSRF-Token"];
                    Console.WriteLine("xToken : " + xToken.ToString());
                    responseH.Close();
                    try
                        HttpWebRequest request_post = (HttpWebRequest)WebRequest.Create("http://Server:8000/sap/opu/odata/sap/ZCUST_TESTING_SRV/post_cust");
                        request_post.Credentials = new NetworkCredential("mobtest", "welcome1");
                        request_post.Method = "POST";
                        request_post.Headers["X-CSRF-Token"] = xToken;
                        Console.WriteLine("xToken POST : " + xToken.ToString());
                        request_post.ContentType = "application/xml";
                        request_post.Accept = "application/xml";
                        request_post.ContentLength = byteArray.Length;
                        Stream dataStream1 = request_post.GetRequestStream();
                        dataStream1.Write(byteArray, 0, byteArray.Length);
                        Console.WriteLine("byteArray : "+byteArray);
                        dataStream1.Close();
                        Console.WriteLine("datastream1");
                        HttpWebResponse response1 = (HttpWebResponse)request.GetResponse();
                        Console.WriteLine("Post response : " + response1.ToString());
                        dataStream1 = response1.GetResponseStream();
                        StreamReader reader1 = new StreamReader(dataStream1);
                        Console.WriteLine("  Console.WriteLine(reader1 : " + reader1);
                        string responseFromServer1 = reader1.ReadToEnd();
                        Console.WriteLine("  Console.WriteLine(responseFromServer1 : " + responseFromServer1);
                        Console.Read();
                        reader1.Close();
                        dataStream1.Close();
                        response1.Close();
                    catch(Exception exp)
                        MessageBox.Show("Post Error : "+exp.Message);
                catch(Exception ex)
                    MessageBox.Show("Error : "+ex.Message);
    Message was edited by: jitendra kansal
    Message was edited by: jitendra kansal

  • I am trying to re-install ITunes on Windows XP.  When I do this, all I get is the "save" or "cancel" message, not "run".  What am I doing wrong?

    Because of  getting the message that I had to uninstall Apple Mobile Support Device and ITunes, in order to get my ITunes to be usable, I did that.  While trying to re-install ITunes, all I get on the message is the choice to "save" or "cancel".  It will not give me the "run" choice.  What am I doing wrong?  This should be fairly simple to reinstall, I thought.
    I am running Windows XP on a desktop computer using Firefox.

    Thanks so much.  This definitely worked.  I'm sorry I did  not think of using IE.  I use Foxfire exclusively so seldom even think of IE as an alternative.

  • When i execute this code i get an error " SQLException: Driver not capable"

    Hi,
    I have a piece of code that should update DB2 Database
    The code is as follows :
    try {
    con = DriverManager.getConnection(url,"administrator", "PCTEAM2000");
    stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
         ResultSet.CONCUR_UPDATABLE);
    ResultSet uprs = stmt.executeQuery("SELECT * FROM GEETHA");
    uprs.moveToInsertRow();
    uprs.updateString("NAME", "Kona");
    uprs.insertRow();
    uprs.moveToInsertRow();
    uprs.updateString("NAME", "SAI");
    uprs.insertRow();
    uprs.beforeFirst();
    while (uprs.next())
    String s = uprs.getString("NAME");
    }uprs.close();
    stmt.close();
    con.close();
    } catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    Thanks

    con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
    ResultSet.);
    some drivers wont support CONCUR UPDATABLE...
    by defualt all drivers are TYPE_SCROLL_SENSITIVE.so its not a problem.
    check your driver documentation whether is support CONCUR_UPDATABLE r not.
    chek for jdbc 3.0 complaint jdbc driver ..
    sree

  • When using firefox on yahoo and opening my mail it says Not Found The requested URL /dc/launch was not found on this server. How can this be fixed?

    when using firefox on yahoo and opening my mail it says Not Found The requested URL /dc/launch was not found on this server. How can this be fixed?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • HT201071 Nikon D3300 RAW support Aperture...any ideas if/when/how long?!?

    Nikon D3300 RAW support Aperture...any ideas if/when/how long?!?

    Getting 2 different stories about what is going on would bother me too. I don't know what would take a week to test. If they are overwhelmed with work orders then they should say so.
    Using your case #, I would ask for a manager. Be polite but firm. You have waited way too long on this and Apple should give you something for your troubles. There have been instances where people have gotten bags, etc where Apple screwed up. It happens in every company. Make the case that you have been out of a computer all this time.

  • When i buy iTUNES SONGS i GET ERROR MESSAGE!!

    When i purchased some music in itune store i keep getting message!
    (There were problems downloading some purchased items check for available downloads from the store menu)
    when i do this i keep getting same message wassup?????????????????

    See "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * https://support.mozilla.com/kb/Firefox+hangs

  • How to Post Parked Invoice Document

    Hi ,
       Some basic FI functional qry ... How to post the parked invoice document .If any one can give me the transaction code will be great .
    Thanks in advance.
    Bye
    Raj

    FBV0.
    Below given is the list of all transactions related to parked documents.
    [code]
    FBV0                 Post Parked Document                 
    FBV1                 Park Document                        
    FBV2                 Change Parked Document               
    FBV3                 Display Parked Document              
    FBV4                 Change Parked Document (Header)      
    FBV5                 Document Changes of Parked Documents 
    FBV6                 Parked Document $                    
    FBVB                 Post Parked Document                 
    FV50                 Park G/L Account Items              
    FV53                 Display Parked G/L Account Document 
    FV60                 Park Incoming Invoices              
    FV63                 Displayed Parked Vendor Document    
    FV65                 Park Incoming Invoices              
    FV73                 Display Parked Customer Document    
    FV75                 Park Outgoing Credit Notes          
    [/code]
    Regards
    Raja

  • Posting Date of Cancelled Invoice Document MR8M

    Hi, there is a invoice document posted in the system (using MIRO) on 3/31/09, when i reverse this document on 4/14/09 using MR8M, the canceled document has a posting date of 3/31/09 (same as the original document) instead of 4/14/09. Can someone tell me how to get the posting date to 4/14/09. Both 3/31/09 and 4/14/09 are in the same fiscal year and period.
    Thanks

    Hi,it's depend on Reversal reason!You'd to customize it

  • OSS note 495160 - update posting date on parked invoice documents

    Hi, my question is about an OSS note; 495160.  I searched for other hits on this, and the problem, and didn't find much in the SCN so far.
    Problem:
    I am trying to find a solution to the issue where the posting date for parked documents is currently trying to post to the day that the document was originally parked.
    This is causing issues for prepaid inventory as documents might be parked and then not posted for 3 months. Since SAP only allows 2 periods to be open, it gives an error that says invalid posting period when you try to post a prepaid invoice that was parked and the period that it was parked in is now closed. Ex. Parked the prepay document and made the payment 6/30/2013. If the product arrives on 8/01/2013 and we try to post the parked document on 8/01/2013, the error will say that it can't post because June period is no longer open.
    Researched possible OSS note:
    I have researched how to change the posting date of parked documents (invoices) and we have OSS note 495160 identified.  This note seems to shed light on the function called, and in high-level terms talks of inserting a new custom function module.
    Question:
    The note appears to be incomplete, however, in the specifics of what code should go in the new Function Module and where exactlyin the parent FM, it should be inserted.
    In addition, some internet lookups have shown that it may be possible to leverage the method SET_POSTING_DATE in BAdI WRF_PREPAY_INVOICE to change the posting date.
    Does anyone have more info on the specifics of what code needs to be inserted and where?  Perhaps this OSS note is incomplete, or still in progress?
    Thanks
    Jeremy

    We did find a way to get this to work.
    In SE38 in SAPLMR1M, we added enhancements to the following:
    In includes:
    1)
         LMR1MTOP  - at the bottom of this top-include,  at enhancement point LMR1MTOP_02, we added
               include /nfm/lmr1mdat.  
    Shortly after, in the PBO sections
    2)   LMR1MO10-->LMR1MO1N-->LMR1MO2O-->LMR1MO2O (document read),  we added
           a new enhancement implementation that was named  ZMIRO_ES_SAPLMR1M 

  • How to delete the document of cancel .invoice.

    dear expert:
      the document of cancel.invoice is open ,i  use vf02 to process it in manually ,system prompt as followed .
    yellow info ::
    Automatic clearing of billing document 90193616
    and canc. doc. 90210214 not poss.
    Automatic clearing of billing document 90193616 and canc. doc. 90210214 not poss.
    Message no. VF 208
    Diagnosis
    The system cannot clear billing documents and cancellation documents because, for example individual item updating
    is deactivated.
    System Response
    The billing document can be created.
    Procedure
    The FI documents are cleared manually.
    red error info )************************************************
    Account 51010100 requires an assignment to a CO object
    Message no. KI 235
    Diagnosis
    You have not defined a CO account assignment for an account that is relevant to cost accounting.
    System Response
    Account 51010100 is defined as a cost element.
    This means that you must always specify a CO account assignment.
    Procedure
    Enter one of the following CO account assignments
    Order
    Cost center / cost center/ activity type
    Sales order item (for a project or cost relevant)
    Project / WBS element
    Cost object (Process manufacturing)
    Network/ Network activities
    Business process
    Profitability segment
    Real estate object
    The posting row affected is 0000001006, account 51010100.
    please help me analyse it .

    dear expert :
      in the posting how can i  assign a CO account assignment (Cost centre, etc.) since it is created as a cost element..i donn't know use whick transaction code to process it ,please tell me detailed info.
    best regards.

  • ACH reversal, determine original invoice documents, how?

    Hello all,
    How do you determine what the original invoice documents are for an ACH payment document that was reversed?  Here is the scenario.
    1.  Three AP invoice documents are created.
    2.  An ACH payment run is created for the previous three documents, creating a payment document number.
    3.  The ACH payment run was reversed, creating a reversal document number.
    I am determining that an ACH payment was reversed if a record exists in table BKPF that is in the payment document # range and TCODE = 'FB08'.  Once I have this payment document that was reversed, I'm stuck on how to get back to the original invoice documents.
    Function module GET_INVOICE_DOCUMENT_NUMBERS will return the reversal document number when using the original payment document information.  But how can I use the payment document number to get back to the three original invoice documents?
    Thanks
    Bruce

    Hi Bruce, try BKPF-STBLG. You can check it in FB03 by using the 'reversal document' button.

  • Incoming invoice not get posted through workflow

    Hi Experts,
    I am working on workflows for incoming invoice used by bus2081. i am facing the problem when the user clicks on post button after verifying the invoice the workitem not posted .and is it showing debit and credit miss match . while posting it with out workflow the document was posted with out error even debit credit miss match
    please give me the solution to overcome from this problem .
    Thanks
    Sreenath

    Hi,
    It seems to be authorisation issue.
    Compare the invoice values which user is able to approve and not.
    Maybe he doesn't have enough authorisation limit to post those invoices.
    Ask him to do it from SBWP backend inbox.
    If it is not going from his inbox means, check the SU53 t code after he clicks on post button.
    Then see in SU53 whether any authorisation is missing.
    It's not a workflow issue. If there is an issue in workflow means, he should not be able to post any invoices.
    Cheers,
    Raja.D

Maybe you are looking for

  • GPU accelerator Photoshop CS6 problem in mountain lion

    I'm having trouble with Photoshop CS6 after installing the mountain lion. When the graphics processor is enabled photoshop crashes. I believe it is a conflict between ML, GPU and Accelerator ATI Radeon 5770. Any predictions for this bug fix?

  • Support getting even worse than before

    3 days, and support haven't even acknowledged my SR. Does anyone else feel that its getting even worse than it already was?

  • CRM Target Groups and Product Segments - BW and BPS settings

    Hi gurus, I have some questions regarding the CRM Target Groups and Product Segments as it relates to BW and BPS planning layouts. 1. When a target group is created in CRM, is it supposed to also be create master data entry for the object 0TGGRP_ID i

  • 10.9: Server Replication Issue

    Hi ther guys,   I have seen several posts about this replication issue since 2012, i have 2 fresh install systems 10.9 Server app 3.0.2 on both boxes DNS shows correctly setup but im totaly lost on where to continue. Is there anyone out there that al

  • SAP first installation with Oracle 11g

    Hi, do you know for  SAP first install is now supported Oracle 11.2.0.2 or only installing first 10.2.0.5 and upgrade to 11.2.0.2 ? Thank you!