Getting previous clearing number after reversal

Hi ,
After reversing the payment for the vendor the clearing details are removed frpm the BSEG table.Can u please let me know from where can i get the previous clearing data details for the invoice.
Regards,
Achu

Look at change documents of object BELEG. (Look at [Read and format change documents|http://help.sap.com/saphelp_nw2004s/helpdata/en/2a/fa01dd493111d182b70000e829fbfe/frameset.htm] or select from table CDHDR/CDPOS.)
Regards,
Raymond

Similar Messages

  • I purchased Adobe Acrobat XI Standard. How do I get my serial number after sending in the redemption

    I purchased do i get my serial number after posting my redemption code?

    Hi Kerk,
    Please refer the KB Docs : http://helpx.adobe.com/x-productkb/global/redemption-code-help.html
    http://helpx.adobe.com/x-productkb/global/find-serial-number-student-teacher.html
    Regards,
    Ravi

  • I can't get my serial Number after downloading the trial version of DreamWeaver CS5.?

    Hi there,
    After downloading the trial version Of Adobe Dreamweaver CS5.5, I had to type in the serial number to actually use the product but I can't find the serial Number anywhere and now i don't  know what to do because it is a trial version and so I can only use it for 30 days. Hope someone can help!

    No, but when i downloaded the trial from the official Adobe website it said that i would get the serial number or something. At first the software wasn't working but after restarting my PC it started working! Thank you for answering!

  • How can I get the SERIAL NUMBER after an INSERT

    I am working on an application using Jdk1.2 connecting to an Oracle 8i
    Database. The JDBC driver that I am using is Oracle's thin driver.
    In the DB, I have a table that has a primary key as a sequence number.
    Upon inserting a single row into this table, how can I get this serial
    number that is generated by the Database.
    Previously I was using INFORMIX database and welogic's JDBC drivers and this
    is how I get the serial number.
    PreparedStatement ps = ...
    ps.setObject(......);
    ps.executeUpdate();
    int snumber =
    (weblogic.jdbc.informix4.Statement) ps.getSerialNumer()
    Similarly I have tried to use
    (oracle.jdbc.driver.OracleStatement) ps.getSerialNumber()
    But this method does not exist in the JDBC thin drivers.
    Is there some other way to get this serial number.
    Thanks,
    Suresh
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by syalaman:
    I am working on an application using Jdk1.2 connecting to an Oracle 8i
    Database. The JDBC driver that I am using is Oracle's thin driver.
    In the DB, I have a table that has a primary key as a sequence number.
    Upon inserting a single row into this table, how can I get this serial
    number that is generated by the Database.
    Previously I was using INFORMIX database and welogic's JDBC drivers and this
    is how I get the serial number.
    PreparedStatement ps = ...
    ps.setObject(......);
    ps.executeUpdate();
    int snumber =
    (weblogic.jdbc.informix4.Statement) ps.getSerialNumer()
    Similarly I have tried to use
    (oracle.jdbc.driver.OracleStatement) ps.getSerialNumber()
    But this method does not exist in the JDBC thin drivers.
    Is there some other way to get this serial number.
    Thanks,
    Suresh
    <HR></BLOCKQUOTE>
    ========================================
    ORACLE don't support serial number as Informix, but you can create sequence table
    and every time get the next value from this table.
    null

  • How to get a serial number after purchase

    I downloaded Lr and trialed the product for a month.  I then signed up for the monthly fee which included Ps.  I can access Ps but when I go to Lr it asks me for a serial number which has not been supplied.  On the help pages it states "You can convert your trial to a Creative Cloud complete or single-app membership by purchasing on the Creative Cloud website. After you purchase your membership, your desktop product trial will automatically be licensed upon relaunch".  I have closed down my Mac overnight but on opening up it still asks me for a serial number so I cannot open Lr?  Help!

    If you downloaded the standalone trial version of Lightroom, it will be necessary for you to uninstall that version. Then you will be able to install Lightroom through the creative cloud application manager. After you install Lightroom that way, just double-click on the catalog that you have already started.

  • How do you get a serial number after computer crash rebuild for CS5.5 Design Premium?

    I do not have access to the old email service where the original email was sent with the serial number first issued. I need to get it again so I can finish the rebuild on the computer. Can someone please help?
    Thanks
    Clint

    if you registered with or purchased from adobe, check your acount using the same adobe id used to register/purchase - Adobe ID

  • How to get a serial number after using trial?

    I downloaded the Lightroom 4 trial, and I liked it so I'm gonna buy it.  However, when I click the "buy" button on the launcher, it redirects me to the buy page and it asks me if I want to download or have a disk shipped to me.  I just want to buy a serial number to activate my copy for good, since I the trial is essentially the full version but with a time limit.  How do I do this?

    click download.  you don't have to install (or even save the download).  just use the serial number to activate the trial you've already installed.
    delete the unneeded download.

  • Document Number after Post !!

    Hi ,
    I am using Call Transaction in BDC .
    After Posting the document , the system generates an Accounting Document Number ..how can i get that document number after the call transaction call ??
    Thank You

    Hi,
    You can also code something like this.
    clear i_msgtab.
    refresh i_msgtab.
    call transaction 'VA02' using    bdcdata
                            mode     p_mode
                            update   'S'
                            messages into i_msgtab.
    if sy-subrc <> 0.
    *Process and display error messages
      loop at i_msgtab.
        clear t100.
        select single * from t100
        where sprsl = i_msgtab-msgspra and
              arbgb = i_msgtab-msgid   and
              msgnr = i_msgtab-msgnr.
        perform process_message using t100-text.
      endloop.
      skip.
    endif.
    form process_message using p_message.
      data: l_message(480).
      if sy-subrc = 0.
        l_message = p_message.
        if l_message cs '&1'.
          replace '&1' with i_msgtab-msgv1 into l_message.
          replace '&2' with i_msgtab-msgv2 into l_message.
          replace '&3' with i_msgtab-msgv3 into l_message.
          replace '&4' with i_msgtab-msgv4 into l_message.
        else.
          replace '&' with i_msgtab-msgv1 into l_message.
          replace '&' with i_msgtab-msgv2 into l_message.
          replace '&' with i_msgtab-msgv3 into l_message.
          replace '&' with i_msgtab-msgv4 into l_message.
        endif.
        condense l_message.
        write: /2 i_msgtab-msgtyp, l_message(250).
      else.
        write: /2 i_msgtab.
      endif.
    endform.                    " process_message
    Hope this will help.
    Regards,
    Ferry Lianto

  • How to get the vendor number that was created using xk01..?

    Suppose i am creating a vendor with all the information by using a bdc program.
    In the same program if i want to go to the XK02 of that particular vendor that was created recently....how it possible..?
    Means how to get that particular vendor number that was created recently...?

    Hi...
    You Can Get the Vendor number after Calling the Transaction 'XK01' as below.
    <b>Declare a table for Collecting messages :</b>
    DATA: T_MSG TYPE TABLE OF BDCMSGCOLL,
              WA_MSG TYPE  BDCMSGCOLL.
    <b>Then Call Transaction Statment:</b>
    CALL TRANSACTION 'XK01'
               USING T_BDCDATA
               MODE 'N'
               MESSAGES INTO t_msg.
    if sy-subrc = 0.
      READ TABLE T_MSG INTO WA_MSG WITH MSGTYP = 'S'.
                                                                    MSGID = 'F2'
                                                                    MSGNR =  '175'.
    <b>Note: Bcoz the XK01 will issue this message</b>
      if sy-subrc = 0.
      write: / WA_MSG-MSGV1.  "This will contrain Vendor Number
    endif.
    endif.
    And you can also Try the Other method i.e. after the Call transaction statement
    <b> GET PARAMETER ID 'LIF' field V_LIFNR.
      WRITE:/ V_LIFNR.</b>
    Reward if Helpful.

  • FBRA - Clearing cannot be reversed (contract number)  Message no. F5538

    Dear
    In T.code F-51-- transfer posting with clearing-- user has posted the document by giving posting key 27 and vendor code, amount  and later in line item 2 by giving posting key 39, vendor code spl gl indicator (for further security deposit), amount and profit center and by mistake filled contract number and contract type.
    In t.code F-51, since in line item 002 the fields contract number and contract type are filled by mistake the same could not be removed even in FB02 as they are greyed out. 
    Later the above spl gl credit was paid by t.code F-53 by selecting the above open item, process open item, and cheque is not yet issued.  Now he would like to reverse the document.
    Now  when the same is tried in t.code FBRA the following error is coming.
    "Clearing cannot be reversed (contract number)  Message no. F5538"
    If contract number and contract type are not filled there is no error at all and the document can be reset and cleared. 
    We are in ECC 6.00.  I just verified the note number 31547 but it is issued on 29.07.1998.  Our basis team also said the same thing.
    Your valuable inputs are highly solicited. 
    Regds

    Dear
    F-53 document has got a clearing document.  Hence I cannot directly use F-08 here.  So I have to use FBRA only
    Requirement is :
    Delete the contents at the line item level in the field labels Contract Number and Contract Type viz., BSEG-VERTN, BSEG-VERTT  fields. (ex., in T.Code F-51 --in posting key 39 contract number and contract type are filled by mistake by user and they need to be deleted after posting the document) 
    The above fields have been included in SPRO>Financial Accounting (New)>Financial Accounting Global Settings (New)>Document>Rules for Changing Docuements-->Document Change rules, Line item after posting the document.
    But even then I could not delete the contents in the above fields in FB02
    Please throw some light as to where I am missing still ?
    Regds
    Through coding the relevant fields were deleted as per reply received from sap. 
    Edited by: aravindpc on Jan 14, 2011 4:47 PM
    Edited by: aravindpc on May 14, 2011 12:18 PM
    Edited by: aravindpc on May 14, 2011 12:21 PM

  • ERROR: Clearing cannot be reversed (contract number)

    Dear Experts,
    When i go to t.code FBRA and want to reset the doc clearing. The error appear with Message no. F5538 Clearing cannot be reversed (contract number).
    This is the Diagnosis
    It is not possible to terminate clearing because a contract number was posted in the line item 002 of the document 1500000088 3500 2011.
    Please anyone, who can answer this case.

    Hello Vivek,
    Thank you for your information. It's very helpful for me.
    On this sap notes, it said 2 program RFVD_CHK_REMOVE_CLEARING or
    RFVD_CHK_CHANGE_CLEARING.
    You can use program RFVD_CHK_REMOVE_CLEARING for customer, but for vendor you can use RFVD_CHK_CHANGE_CLEARING.
    CHANGE CLEARING only break the link between two document and open one side only.
    You need to run the program once more for clearing document, so both of them will open again.
    If you don run for the second once, the clearing document still closed.
    After that you can use t.code FB08 to reverse that document.
    Hope this will help the others one.

  • HT1212 My iPod touch is disabled after too many attempts and I want to enable it without getting it clear so can you please help me out in this....

    My iPod touch is disabled after too many attempts and I want to enable it without getting it clear so can you please help me out in this....

    A data recovery company MAY be able to do it for a price. The Disabled is a very good security feature.
    JWhy not just restore from the last backup you have?
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
      Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • I purchased Adobe Acrobat XI Pro - Student and Teacher Edition but cannot activate it even after it has deactivated and replaced my old Acrobat 8. How do I get a serial number and activate the product?

    I purchased Adobe Acrobat XI Pro - Student and Teacher Edition but cannot activate it even after it has deactivated and replaced my old Acrobat 8. How do I get a serial number and activate the product?

    I have the same  problem. Have paid. Messages say I have downloaded it but the file is inaccessible apparently download is somewhere on my hard disk. How do I find it?? Is there not help at an Adobe phone service. If so what is the number to call??
    Roger Broughton

  • I recently subscribed to Acrobat XI after the trial expired but when I went to activate it I was asked for the serial number. I only have the order number on the invoice. How do I get the serial number for the trial software that is on my computer?

    I recently subscribed to Acrobat XI after the trial expired but when I went to activate it I was asked for the serial number. I only have the order number on the invoice. How do I get the serial number for the trial software that is on my computer?

    Please do not try to send attachments in mail responses to forum messages. Please return to the forum and click Reply. You can then use the CAMERA icon to add your pictures. Looking forward to seeing what is wrong with your license screens - the general advice is simply to sign in, and everything is done. Make sure you use the SAME Adobe ID that you used to purchase, and check your account details to be sure the subscription is active.

  • I'm being asked to provide a serial number when I try to access Illustrator after downloading it to my desktop. Where would I get a serial number for Adobe Illustrator?

    I'm being asked to provide a serial number when I try to access Illustrator after downloading it to my desktop. Where would I get a serial number?

    Normally you would get a serial number when you purchase the software.  Which version are you asking about?

Maybe you are looking for

  • Standard text in Routings - Word documents

    Hi all I want to attach word documents to Standard Routers. I checked the standard text CA10 but did not find a way to upload word documents. I saw an option only for uploading 'ASCII', RTF or RTF files. Is there a way I can attach word documents to

  • Copy part of a take & paste it into a Master track?

    I've just started working with TAKES in Logic Pro. I would like to copy and paste a segment of one TAKE into a Master Track. I ve tried copy and paste but it does not work. Can anyone help me?

  • Package structure

    Well i actually develop a soft and i have a little question about packages structure. My application is composed is composed of a main JFrame with a JDesktopPane and a primary JInternalFrame. Some others JIF are used and in order to make it clear, i

  • Help other than SAP help to be integrated

    Dear All, Can you please help me regarding the following issues 1) My customer wants us to integrate a help other than SAP help or a help using RWD infopak. Is it possible? 2) We are planning to develop the help in a HTML format or something similar

  • My Location is not working with GPS

    My Location does not update when trying to use GPS or VZW Location but updates fine with Google Location services.  It's not a problem with locating (seemingly), but that the phone won't even recognize that an alternative location service (to Google'