Table for Invoices not release

Is there any table to find the list of invoices which are not released for accounting
if yes please let me know
Regards,
KK

Hi,
I think you could check table VBRK for the field: RFBSK(Status for transfer to accounting).
The different value of this field means like following:
     Error in Accounting Interface
A     Billing document blocked for forwarding to FI
B     Posting document not created (account determ.error)
C     Posting document has been created
D     Billing document is not relevant for accounting
E     Billing Document Canceled
F     Posting document not created (pricing error)
G     Posting document not created (export data missing)
H     Posted via invoice list
I     Posted via invoice list (account determination error)
Regards,
Alex

Similar Messages

  • Tables for invoice held documents

    Dear All,
    May i know the sap table for Invoice held documents.
    Please suggest
    Thanks in advance

    u can get the details in table RBKP  field RBSTAT
    and details are
    1     Defined for background verification
    2     Deleted
    3     With Errors
    4     Correct (posted, not completed)
    5     Posted
    A     Parked
    B     Parked and completed
    C     Parked and held
    D     Entered and held
    E     Parked and released
    hope this helps

  • Clob temporary table space is not released

    In our java web application, it uses datasource to call oralce stored procedure and get back data in Clob data type. The oracle version is 8.1.7.4. After the database call, the database connection is closed. But I found that the tablespace for Clob data is not released. Right now it becomes a critical issue of our production database. Anybody has any clue? Really appreciate.

    Team,
    We have a table of size 550gigs in size and we truncated the table , truncated sucessfully but space is not released in os level, what action we can take to release the space and this table has only one row and contains the binary data.
    Thanks
    PGR
    Hello,
    Yes space wont be released immediately .If large extents are in picture which I assume is your case it goes into deferred drop a background process which will execute after some time( time may vary).See below link for details.
    As per BOL if extents are more than 128 it goes in deferred drop.
    http://msdn.microsoft.com/en-us/library/ms177495.aspx
    You should wait for some time .keep checking the free space
    Below discussion will surely help you in understanding.See Jonathan's reply
    http://social.msdn.microsoft.com/Forums/en-US/4aa2537e-246b-4bfe-818d-3482531d9149/sql-server-2005-massive-400gb-table-dropped-space-not-released
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Regarding tables for Invoice

    Hi
    What are the tables for INVOICE.
    Regards
    Sandeep.
    Edited by: Sandeep Reddy on Feb 28, 2008 3:41 PM

    Hi,
    RSEG- Document Item: Incoming Invoice
    VRKPA: Sales Index: Bills by Partner Functions(VBELN,BELNR,KUNDE,PARVW)
    VRPMA: SD Index: Billing Items per Material(MATNR,VBELN,BELNR,KUNNR)
    VBRK (Billing Document Header table)
    VBRP (Billing Document Item table)
    VBAP,
    VBFA ,
    vbuk,
    vbup.
    Regards,

  • Table for Invoice

    Hello Gurus,
    Can any one tell me the table for Invoicing header details and Line item details,
    Regards,
    Prasanna

    Hello
    Invoice Header table: RBKP
    Invoice item table: RSEG
    Regards
    Gregory Mathews

  • Table for SAP NOTEs

    Hi friends!!
    May i know is there any table that gives any info about the NOTES .

    Hi deepika ,
    Pls see the following tables
    CWBNTVALID  Validity table for Notes
    CWBNTSTXT    Short text for a Note
    CWBNTMSG    SAP Notes Message Log
    CWBNTHEAD  Header table for OSS Notes in customer systems   
    CWBNTGATTR  Table for Any Note Attributes
    CWBNTDATA     Compressed data for OSS Notes
    CWBNTCI           Assignment of Note to correction instructions
    Regards
    Byju

  • Best way to update RBSELBEST table for invoice

    what is the best way to update RBSELBEST table for PO invoice? Is there any BAPI or FM for this?

    Thanks. I tried this one also, but it does not update the table.
    in case if someone used this, what parameters i need to pass for this to work?

  • Tax tables for Invoices

    Hello Experts,
    I am trying to create a Vendor Spend report (both MIRO and KR invoices) which also needs some tax information on it. Can you help in locating the tax amounts in the following cases:
    1) The company pays the whole amount (including taxes) to the vendors and then the vendor is responsible to pay the taxes to the government. How can i locate what amount went to the vendor and what was the tax amount - which table stores this information?
    Thanks,
    Rishi

    Hi Michael,
    The Line item ID = 'T' identifies only those taxes which the company pays on its own. In other words, the tax amounts which hit the company's G/L account. However, I also want to track down the taxes which were part of the Vendor payment. E.g. I pay the Vendor 600 $ for an invoice of which only 550 $ was for the material and the rest 50 $ was tax but the total invoice was created for 600 $. in this case, I won't see a line item in the BSEG table for those 50$. How can I locate this break-up.
    Thanks,
    Rishi

  • How to check a XMLTYPE table for corrupted (not invalid!) XML records ??

    Hello,
    I'd like to get help on the following issue, please. I need to check the XML data in a number of tables with XMLTYPE data type. Some of the data is corrupted but in terms not that the XML format is wrong but there is no XML at all in the fields but just only, for example, control characters (no tags, no anything, just corrupted data).
    So, I have made a PL/SQL procedure cursor to get all the tables from a list, and then another cursor inside to browse each table for corrupted records. But can you help me how to check this? Any of the XML functions like for example: XMLIsValid, isFragment(), getrootelement(), etc. return to me an Oracle error "ORA-31011 XML parsing failed" and the procedure gets stuck on the first found bad record. But I need to continue and check all of them. Is it possible to get the ORA-31011 error with EXCEPTION, write to a logging table the corrupted record ID, and then continue?
    Here is my simple procedure:
    CREATE OR REPLACE PROCEDURE CHECKXML (v_schema in VARCHAR2)
    IS
         v_Message     VARCHAR2(254);
         sql_stmt1     VARCHAR2(1000);
         sql_stmt2     VARCHAR2(1000);
         c1           SYS_REFCURSOR;
         c2           SYS_REFCURSOR;
         cur_tab          varchar2(100);
         cur_appl     varchar2(100);
         cur_rec     varchar2(200);
         valid_flag     number;
         criteria     VARCHAR2(20);
         tab1          VARCHAR2(20);
         tab2          VARCHAR2(20);
    BEGIN
         criteria := 'XMLTYPE';
         sql_stmt1 := 'select id, path from ' || v_schema || '.stubfiles where type=:bcriteria';
         open c1 for sql_stmt1 using criteria;
         loop
         begin
              fetch c1 into cur_tab, cur_appl;
              exit when c1%notfound;
                   insert into system.log_table values (sysdate, v_schema, 'next table', 'id ' || cur_tab, 'appl ' || cur_appl, '');
              sql_stmt2 := 'select t.recid, t.xmlrecord.isFragment() from ' || v_schema || '.' || cur_tab || ' t';
              open c2 for sql_stmt2;
              loop
              begin
              fetch c2 into cur_rec, valid_flag;
                   exit when c2%notfound;
                   insert into system.log_table values (sysdate, v_Schema, 'next record', 'id ' || cur_tab, 'recid ' || cur_rec, 'valid ' || valid_flag);
                   commit;
              EXCEPTION
                   WHEN OTHERS THEN v_Message := sqlerrm;
                   dbms_output.put_line('Error for ' || cur_tab);
                   dbms_output.put_line('-' || v_Message);
                   insert into system.log_table values (sysdate, cur_tab, 'id err' || c_Row.ID,'appl err' || c_Row.path, v_Message,'');
              end;
              end loop;
              close c2;
              commit;
         end;
         end loop;
         close c1;
         commit;
    END CHECKXML;
    Thanks in advance
    Evgeni

    Hi
    Why do you use a GTT? Just keep your xml in memory...
    HTH
    Chris

  • Setup tables for invoices header data (2LIS_13_VDHDR)

    Hi experts,
    I am using 2LIS_13_VAHDR and 2LIS_13_VAITM to transfer data to SAP BW.  Through the t-code SBIW, I I run the job to fill setup tables with invoices data. the job is completed succefully. when I check the extractors in RSA3, the extractor 2LIS_13_VAHDR doesn't bring any data while 2LIS_13_VAITM bring a set of items !!
    I m wondering why I dont get invoices header data!
    Thank's a lot for your help.
    Abdess,

    Hi,
    Did you delete the old initialization request from BW and also delete old setup table.
    Because the issue is strange, If you are able to see entries in item then header should also fetch data.
    Repeat the steps again if you have time.
    Use T-Code LBWG to delete setup table.
    Delete MCXE13 entries in LBWQ.
    Use T-Code OLI9BW to fillup setup table for 2lis_13.
    Thanks,
    Shakthi Raj Natarajan.

  • Tables for FM Budget Release and Budget

    Dear Gurus,
    Can any one please provide the tables for FM Budget and Release??
    Regards,
    Venkat

    Reddy,
    As per my knowledge, there are no direct tables w.r.t funds center and commit item.
    That is the reason i have given main tables as well as useful tables.
    Here, the mentioned tables BPEP and FMIFIIT takes POSIT and OBJNR.
    So, first need to get the above mentioned fields using funds center and commitment item.
    Follow the sample code, which might help ur purpose..
      CONCATENATE 'FS'  <controlling area>      <funds center>            INTO temp_objnr SEPARATED BY ' '.
      SELECT SINGLE posit
             FROM fmposit
             INTO temp_posit
             WHERE fikrs = <controlling area>
               AND fipex = temp_fipex. " commitment item...
    SELECT objnr
             posit
             wtp01          wtp02          wtp03          wtp04          wtp05          wtp06          wtp07          wtp08          wtp09          wtp10
             wtp11          wtp12          wtp13          wtp14          wtp15          wtp16
             FROM bpep
             INTO TABLE it_bpep
             WHERE objnr = temp_objnr
               AND posit = temp_posit
               AND wrttp = '43' " this depends on ur senario
               AND gjahr = year. " fisical year
    LOOP AT it_bpep.
        COLLECT it_bpep INTO it_bpep_temp.
        CLEAR : wa_bpep.
    ENDLOOP.
      SELECT fistl          fipex          trbtr          FROM fmifiit         INTO TABLE it_fmifiit
             WHERE fonds IN r_fonds
               AND fistl = temp_fistl
               AND fipex = temp_fipex
               and GJAHR = year. " fisical year
      LOOP AT it_fmifiit. " for consumed budget
        COLLECT it_fmifiit INTO it_fmifiit_temp.
        CLEAR : wa_fmifiit.
      ENDLOOP.
    Hope this helps.
    Otherwise, do mention what exactaly you want..
    Thanks
    Ram

  • Table for invoice mailing address

    hi gurus,
    is there any database table for the invoice mailing address?
    thanks.

    Hi
    Go through the link given below : you wil find tables related invoice.
    http://www.erpgenie.com/abap/tables.htm
    With Regards
    Nikunj Shah
    Edited by: Nikunj Shah on Jul 9, 2008 5:38 AM

  • Oracle select for update: not releasing lock

    My JDBC code uses "select for update" to modify record in Oracle database. I tried to simulate network connection down situation.
    After my JDBC code locked on a record using "select for update", I unplugged the network cable. I then tried to run the same code on another computer, but it could not accquire the lock, because the previous lock was not released. I tried sqlplus to lock the record, but failed also. The lock has been there for at least an hour now. I guess it may finally be released, but is there a way for oracle to release the lock as soon as the connection is down? Not know if it is a JDBC setting or oracle setting.

    Dear Friend,
    What you are trying to do is not correct way of checking the concurrency and transaction.
    The reason is as listed below.
    01.Always remember http is a stateless protocol and removing the connection or just closing the browser will never be informed to the database or to the application server thus the transaction monitor (TM)or processor will never release the lock as it will deem that the actor is manipulating the data.
    02.As per locking goes every database is having a �TM� and the default isolation level setting is different like oracle uses serializable DB2udb 7.0 or db2/As400 uses repeatable read. You can change this setting by editing the default setting in the database but be very sure before touching it.
    03.     You can also transpose this with your Application server setting for that piece of code or Globally but again be very sure about it as it will change the entire gamete.
    04.     For releasing lock you have to manually do it or you can change the settings of App server or the Database to release the connection after some wait time.
    Regards,
    Ruchir

  • Table for Invoice release date

    Hello,
    Can anyone tell me the table name in which I can get the Invoice release date (Invoice was blocked previously and released with MRBR). I want the date at which it is released through MRBR.
    Thanks,
    Input

    Dear Input_Output,
    When ever we perform LIV and is blocked for payment (due to price variance or other variance) is stored on table RBKP_BLOCKED
    Now when we release it through t. Code MRBR that time its get deleted from RBKP_BLOCKED
    Now to get the date of release Use can Use table CDHDR
    Where OBJECTID =Invoice no+year (e.g 51056066022011 where is 5105606602 invoice no 2011 is year)
    Tcode =MRBR
    You will get the fields called UDATE and UTIME these are your release date and release time
    Hope it clears

  • Invoice not released to accounting: tax code issue

    Hi All,
    Iam getting an error while i released my invoice to accounting. No accounting document generated. the error is " Tax code V0 does not appear in any G/L account item Message no. FF753"
    we have various condition types in our invoices. Only  TAX condition type ZWST has tax code V0. rest of the condition types like basic price, cash dicsount, rebate condition etc do not have tax code assigned to them which is right since only tax conditions have tax code assigned to them and which is ZWST only.
    My question is why the above error comes " Tax code V0 does not appear in any G/L account item Message no. FF753" . if I double click on the error message, system shows me the following
    """"""""""""""""tax code V0 does not appear in any G/L account item
    Message no. FF753
    Diagnosis
    The document entered contains a customer or vendor item with tax code V0. This does not occur in any of the G/L account or asset items.
    Consequences:
    If you have not entered the cash discount base manually, the system will set it to zero in this item.
    If this item was paid with cash discount deduction and the cash discount amount contains a tax portion, the tax code entered is used for the backdated tax calculation. An automatic breakdown does not take place on the basis of the offsetting items.
    Procedure
    Check whether the tax code was set correctly. If necessary, correct it or enter "**".
    There are, however, also situations in which it makes sense to enter a tax code manually which differs from the offsetting items, for example, during data acquisition.
    Effects on Customizing
    You can define when this system message is to be issued in accordance with your requirements.
    In Customizing, choose Cross-Application Components -> Bank Directory -> Change Message Control.
    The application area and message number can be taken from the technical documentation """""""""""""
    I do not know what system is saying.Could anybody help.
    regards
    sachin

    Hi Sonu,
    Please refer SAP Note 112609.
    Thanks & Regards,
    Santosh

Maybe you are looking for

  • Using AutoCAD on a Mac Pro

    I was a devoted mac user all through college. (I even had one of those old macs with the 9in mono screens - LOL), but had to switch in the late 1980's because as an engineer using CAD software I was forced to go PC. I have been a pc user ever sinse b

  • MacBook Pro running v.slow - is there a way of optimising HD?

    My MBP is running like an absolute dog! It's seriously frustrating, feels like I'm working on an 8MB RAM 15 yr old machine at times. I bought it from a printer 2nd hand 2 yrs ago, and was running fine for the first 18 months. It came with Adobe CS3 a

  • Looking for some assistance with my bill

    A little back story. December 2009, I purchased/upgraded to Verizon’s new Motorola DROID. Loved the phone, served me well. I had a $59.99 phone plan and the $30 unlimited data plan. In November of 2010, I get an email from Verizon offering a limited

  • Error in the Portal Logon par

    Hi All i got the error  in the logon par customization i have the followed the steps based on the weblog from the following link Modifying The Logon Par(or customising the Logon Screen) after done everything i restarted the portal then i got the foll

  • ABAP Run time Error whle executing the Balance sheet report in FGI0

    Hi, I am getting the below ABAP Run time error while executing the Balance Sheet report in FGI0.It was working before but now it is giving the error.Kindly help me in solving this. Runtime Errors         MESSAGE_TYPE_X Date and Time          06/12/20