How to identify reverse or reset document nos from FI tables?

Hi..
I have to send FI Documents data from SAP to NON_SAP system. Like from tables BKPF, BSID,BSAD, BSIK,BSAK, BSIS, BSAS. I will send this data through RFC on weekly cycle..Now problen is that if the cleared item document is reset or reverse then the entry from clear item table moves to open item table. Not i am not able to identify such entries ..because in that no change in create or change date..so can anyone tell me?
Its urgent..please.
Thanks.

Hi
Please use field BSEG-XRAGL to identify whether the document is reversed or not?
Please use field BSEG-STBLG if an open item is reversed. This field will be filled with reversal document number.
Regards
RS
Edited by: RS on Dec 20, 2007 7:17 AM

Similar Messages

  • ¿How can I to get the selected index from a table in sapui5?

    I have a multiselect table for each item I need to open a Dialog and bind then the table.
    How Can I to obtain the index position from my table?
    var myTable = sap.ui.getCore().byId(this.sId);
    var myItem = sap.ui.getCore().byId(myTable.getSelectedItem());
    Thanks in advance.

    Hi,
    You can also use getSelectedContexts of table instance to get the selected indices of sap.m.Table
    var aContexts = myTable.getSelectedContexts(true);
    for(var i = 0 ; i < aContexts.length ; i++)
    var selectedIndex = parseInt(aContexts[i].sPath .split("/")[2]);
    Thanks,
    Rumeshbabu S

  • How to reverse and reset documents cleared by FB1S

    Hi all,
    This is the scenario am into:
    Payment program cleared an open item doc say 19xxx for the vendor and created a clearing document 20xxx and check ABCD was send to vendor. Later found check was to be voided and the document reversed. Instead of doing FCH8, the user did an FB50 entry for the G/L account and executed the FB1S for manually clearing the G/L account with a document 30xxx. Now trying to void the check, gets an error saying "Document 20xxx is not purely a clearing document." The diagnosis explains that 'Payment doc 20xxx also has clearing document 30xxx in addition to its own clearing document number. As a result, the document cannot be reversed after resetting the cleared item.' The procedure explains again that to reset doc 20xxx, the cleared item 30xxx has to be reset prior.' I tried executing FB08 for the doc 30xxx, but errored out saying " specific document not reversible".
    I know its not an often situation. Has anyone comeacross something of this sort and voided the check?.
    Thanks alot in advance for all the help, suggestions and comments.. Points will be awarded for the helpful.

    Hi,
    using t.code FBRA reset&reverse the document no:30xxxxxxx.
    using fch8 youcancel check.
    regards
    Chandra

  • How to identify Parked and Posted Documents in GL Line Item Report

    Is there any way to identify parked and posted documents in GL Line Item Report S_ALR_87012282? If i tick the parked documents in the further selection tab in the selection parameter, report will list all documents (parked and posted).
    There is no available field in the layout. Is there any other way?
    Thanks!

    HI,
    The other way to know the parked document details
    use tcode: FBV3 - Display
    OR
    you can go to SE16 and enter table name VBKPF -Document Header for Document Parking
    BSTAT = V
    V = parked document
    and ececute u will get the details of parked document.
    Edited by: Manohar Mathkunti on Sep 13, 2008 11:11 AM

  • How to identify the data mismatch between inventory cube and tables?

    Hi experts,
    i have a scenario like how to identify the data mismatch between 0IC_C03 and tables,and what are the steps to follow for avoiding the data mismatch

    Hi
    U can use data reconcilation method to check the consistency of data between the r/3 and bw. Plz check the below link
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0931642-1805-2e10-01ad-a4fbec8461da?QuickLink=index&overridelayout=true
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/d08ce5cd-3db7-2c10-ddaf-b13353ad3489
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/7a5ee147-0501-0010-0a9d-f7abcba36b14?QuickLink=index&overridelayout=true
    Thanx & Regards,
    RaviChandra

  • How can I get ALL the user info from WWW_FLOW_FND_USER -table?

    Hi.
    I use HTML DB authentication and therefore all my user information is stored in HTML DB tables. I can use :APP_USER to get USER_NAME, but in my application I need to have also USER_ID, FIRST_NAME, LAST_NAME and EMAIL_ADDRESS fields from database. I don't want to change any database/schema security level so I cannot read directly from WWW_FLOW_FND_USER -table when I am inside in SCOTT -schema/sec.level.
    How to read all the information?

    Thank you for your help, but I cannot find any information about backage wwv_flow_user_api on OTN or in HTML DB documentation.
    Where to start?

  • How to insert records with LONG RAW columns from one table to another

    Does anybody know how to use subquery to insert records with columns of LONG RAW datatype from one table to another? Can I add a WHERE clause in the subquery statement? Thanks.

    Insert into ... Select statements are not supported for long or long raw. You will have to either use PL/SQL or convert your long raw to blobs.

  • How to dynamically create selecItems in a pgae from a table

    To those who may be able to help:
    I am using JDeveloper 10.1.3.4. In my application, I need to put a number of selectItem tags such as radio buttons on a page. What is difficult about this is that it can not be known in advance how many radio buttons there will be, because is depends on how many rows will be selected from a table, even though it is known that the number of selected rows will not exceed 3. I am considering using the radio button because it looks better on the page, and the user must select only one.
    A few sample rows from the table:
    TERM    AVAILABLE  SWITCHED
    200809  N          OFF
    200902  N          ON
    200906  Y          ON
    200909  Y          ONThe SQL of the view object from this table/(entity object) is:
    SELECT Terms.TERM
    FROM TERMS Terms
    WHERE AVAILABLE = 'Y' AND SWITCHED = 'ON'I am able to drag the selected two rows from the data control palette. But it is just a table. What I need is to ask the user to select one of them. What is the easiest way to achieve that?
    Many thanks for your help!
    Newman

    Hi, Sireesha,
    I almost succeed in the backing bean, except one last line when adding the new SelectItem into the list. Here is the code:
        private List<SelectItem> termList;
        public void setTermList(List<SelectItem> termList) {
            this.termList = termList;
        public List<SelectItem> getTermList() {
            return termList;
            FacesContext fc = FacesContext.getCurrentInstance();
            ValueBinding vb =    fc.getApplication().createValueBinding("#{data}");
            BindingContext bc = (BindingContext)vb.getValue(fc);
            DCDataControl dc = bc.findDataControl("ZBOVModuleDataControl");
            ApplicationModule am = (ApplicationModule)dc.getDataProvider();
            ZBOVModuleImpl zbovam = (ZBOVModuleImpl)am;
            TermsForStudentsImpl termsOpen = (TermsForStudentsImpl)zbovam.getTermsForStudents1();
            System.out.println("Number of rows: " + termsOpen.getEstimatedRowCount());
            long size = termsOpen.getEstimatedRowCount();
            for (int i = 0; i < size; i++) {
                Row currRow = termsOpen.getRowAtRangeIndex(i);
                String term = (String)currRow.getAttribute("Term");
                String termDesc = translateTerm(term);
                SelectItem selectItem = null;
                selectItem = new SelectItem(term, termDesc);
                // The code runs fine except when the one line below is uncommented
                //termList.add(selectItem);
                System.out.println(term + ": " + termDesc);
        public String translateTerm(String yyyymm) {
            String year = yyyymm.substring(0,4);
            String semester = null;
            String month = yyyymm.substring(4,6);
            if (month.equals("02")){
                semester = "Spring";
            } else if (month.equals("06")) {
                semester = "Summer";
            } else if (month.equals("09")) {
                semester = "Fall";
            return semester + " " + year;
        }The page in the front is blank except one line of static text, and nothing in the page binds to the termList in the backing bean yet. When the line {color:red}termList.add(selectItem);{color} is commented out, the page runs and the console prints out:
    09/08/17 03:17:25 Number of rows: 3
    09/08/17 03:17:25 200809: Fall 2008
    09/08/17 03:17:25 200902: Spring 2009
    09/08/17 03:17:25 200906: Summer 2009But uncommenting that line will cause a NullPointer error, and the error message says that the SelectTerm class can not be instantiated (I wrap round the long line of error message in the browser into several shorter lines):
    javax.servlet.jsp.JspException: javax.faces.FacesException:
       javax.faces.FacesException: Can't instantiate class: 'zbov.viewcontroller.backing.student.SelectTerm'..
       class zbov.viewcontroller.backing.student.SelectTerm : java.lang.NullPointerExceptionI am stuck here. Do you have any idea what is wrong and how to get around this?
    Thank you for helping.
    Newman

  • How to retrieve goods receipts for purchse order from mkpf table

    Can any one tell me the selection criteria for selecting goods receipt  for PO 's from MKPF table.

    Hi,
    Proceed as below:
    EKKO -> EKPO => EBELN  "Via Purchase Document Number
    EKPO -> EKBE => EBELN, EBELP  "VIa Purchasing Document and Item with Transaction Type(VGABE) = 1. Transaction type 1 lists out all GR's for the PO Item.
    "Should you require more details of the GR Document,
    EKBE -> MKPF => MKPF-MBLNR = EKBE-BELNR & MKPF-MJAHR = EKBE-GJAHR
    MKPF -> MSEG => MBLNR, MJAHR
    Hope this helps.
    Regards
    Eswar

  • To identify  a  good recipt document no in field table

    Hi,
    How do u identify a goods receipt?
    I mean using which field table

    HI,
    When you do a good receipt, two tables gets updated, MSEG (Line item: Material document)& MKPF ( Header:: Material document).
    You can find almost all the data related to goods movement in this two tables, even your material document number.
    Regards

  • How to recover a corrupted MSWord Document - corrupted graphics / corrupted tables

    Hello i am hoping to find someone who can guide me in recovering a word document for me... I was working on it had my auto save set to every 4 mins and all
    was well. closed ms word normally only to find the next time i open i get "a table in this document has been corrupted..." 
    Just to be clear i know all about word open and repair and recovering the last saved file etc. Those are not working. I get my file back but several graphics and
    tables are missing/messed up. 
    I am hoping that someone has some insight into this (maybe some document repair software that works well) and can help me restore the document or at least open
    it somehow with the original pics showing so that at least i know how to make changes to the new document. 
    Hope this makes sense. very urgent.

    
    If you're using Windows 7, the built-in shadow copy centre may have an older and uncorrupted version of your file.
    Launch Explorer, right-click the folder that contained the document and select Properties.
    If you see a Previous Versions tab then click that.
    If all is well then you'll see a list of entries for the folder, going back days, or maybe weeks.
    Double-click one with a date when you know the document was readable, and try opening this older version.
    Save it with a new name, and then repeat the process with later folder entries until you reach the point where the file became corrupted.
    If methods above didn’t work for you, you can use undelete tools like Any Data Recovery Pro (http://www.any-data-recovery.com/product/datarecoveryprofessional.htm)
    or Revuca (http://www.piriform.com/recuva/features) to help you find old Office temporary files. After that, rename the TMP extension to match the real document format, and then try opening it to see what you've recovered.

  • How to use XI to retreive document  files from SAP DMS?

    Hello XI experts,
    We have external application php that runs on separate non-sap server.
    I am willing to retrieve document from SAP DMS (documents management system) via XI and forward them to this application. The files are usually ms office format when you display them ( but I am not sure how they are stored in database)
    Anyone can tell me please if I can use XI for this purpose?
    How is going to be the connection and the retrieval done on DMS side ?
    What adapter will be used and how the file will be transferred via XI?
    Also I will appreciate any directions in connecting the php application side. What Adapters will be used , how doc file can be send (I guess as an attachments )?
    Appreciate any help!

    hi check
    FG : CVBAPI
    U have Standard BAPI to communicate with DMS system meeting your requrment
    some bapis
    BAPI_DOCUMENT_CHECKOUTVIEW     Check out document for display
    BAPI_DOCUMENT_CHECKOUTVIEW2    Check out document for display
    BAPI_DOCUMENT_CHECKOUTVIEWX    Check out document for display
    BAPI_DOCUMENT_CREATE                   Create Document
    rgds
    srini

  • How to identify and remove duplicate plugin effects from AE cs5 please?

    hello,
    i installed some trial plug in effects for AE and PPRO cs5
    cycore, boris, trapcode
    the PPRo went great
    however, with the AE i get notices that multiple instances of 'such and such' effect
    is installed more than one time...there's about 15 that give me a warning each time i start AE...
    i tried my best to locate any duplicates but no luck
    How do you identify and remove duplicate plug in effects for AE CS5?
    thanks,
    j

    hello,
    it is nice when you can answer your own question...
    looked in 'common...media core...' and found the new blue trial plugins
    also had the duplicates of the new blue plugins in the AE plugins 'effects' folder
    deleted the plugins from the 'media core' folder
    no more warning signs...
    cool deal
    back to work,
    j

  • How to extract Title, Author and Document name from document(.doc;.rtf;..)

    Some files contain meta-data from which we can extract even more details.
    for example: .mp3 file format is:
    at end of file - 128 bytes
    offset type len name
    0 char 3 "TAG"
    3 char 30 title
    33 char 30 artist
    63 char 30 album
    93 char 4 year
    97 char 30 comments
    127 byte 1 genre
    For Documents, is it possible to get the Creator, Title and Name of the document from the file (*.doc, *.rtf, ...)

    > I'd love to but they don't make those particular css
    pages available to us
    > (which seems insane). To modify the css we have to
    extract it from their
    > page
    > apparently.
    If the page can grab the CSS, so can you. Look in the code.
    Find the link
    to the CSS file. Browse to that link. You now have the CSS
    file. Or show
    us the link's code and we'll get it for you.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Lvanhoff" <[email protected]> wrote in
    message
    news:gqijsu$dk3$[email protected]..
    > I'd love to but they don't make those particular css
    pages available to us
    > (which seems insane). To modify the css we have to
    extract it from their
    > page
    > apparently.
    >
    > So if there were some way to tell DW: "Show me all the
    styles used in this
    > html and put them in the style area of the document" it
    would make my life
    > EVER
    > so much easier! :-)
    >
    > Thanks
    >

  • How to identify if the COBOL ran successfully from app engine?

    I have scheduled a COBOL process from App Engine. Once it ran successfully, i need to start another process. How to accomplish this in App engine peoplecode? Is there any flag updated on the successfull run of the cobol process? How to handle when the cobol did not run successfully?

    Refer to PeopleBooks
    http://peoplebooks.cognizant.com/PSOL/PT848/eng/psbooks/tpcl/chapter.htm?File=tpcl/htm/tpcl02.htm%23H4529
    Sample code from PBooks Pasted below
    Rem Set the return code so we are sure it is sent back.
    &Returncode = -1;
    Rem Set the parameters that will be sent across.
    &param1 = "John";
    &param2 = "Smith";
    Rem Set the standard parameters that indicate program name and run-control.
    &RemoteCobolPgm = "CBLPROG1";
    /* call the remote function */
    RemoteCall ("PSRCCBL",
    "PSCOBOLPROG", &RemoteCobolPgm,
    "PSRUNCTL", workrec.runctl,
    "FirstName", &param1,
    "LastName", &param2,
    "Returncode", &Returncode,
    "MessageSet", &msgset,
    "MessageID", &msgid,
    "MessageText1", &msgtext1,
    "MessageText2", &msgtext2);
    if &Returncode <> 0
    WinMessage(MsgGet(&msgset, &msgid, "default message", &msgtext1, &msgtext2));
    end-if;

Maybe you are looking for

  • Warning message in VT01 or 02n Shipment completion

    II am trying to create a warning message when Pressing the Shipment completion button in VT01 or 02n Transaction. Standard Activity profile does not have any area to enter a custom Formula or Routine that will help the developer to enter the logic. A

  • After a complete Time machine recovery....

    I just finished using time machine to recover my iMac after putting in a new HD. Everything worked perfectly but now the contents of the time machine appear to be gone from before the install date. This is kind of concerning since one never knows wha

  • How to create Proxy Server in Java

    Hello I need to create Proxy server on port number 80. Does enybody knows how to do that.??? ThX

  • SAP JRA and JBoss again

    Hi there, I like to use SAP JRA within a JBoss Application Server, I use the rar-file provided by Web AS. I knew that there were other posts regarding this topic, but they did not really answer my question: The Thread JCO and JRA under JBoss says: u2

  • Two applications Pages on Macbook Air

    I have two applications Pages on Macbook Air. The first Pages has already been buying MacBook Air in package iWorks but it was shareware. Then I paid for a working version, but now I have two applications Pages and they interfere with each other. The