Reversing & Resetting The Reversed Document using FBRA

Hello All,
Our client by mistake reversed a payment document while doing MR8M. Now they want to reverse the reversed document.
I have tried FBRA again for the reversed document and it worked out and a new document got posted.
Now let the orginal document be A which is reversed and reset using the document B.
Due to wrong reversal of A again we used FBRA and posted document C which in turn reversed and reset B.
Now if you check the orginal document A is available as an open item , earlier which was a cleared item. I want to know how can we make in back to a cleared item
Regards
Arun

Hi All ,
Thanks for the responses.
My issue is resolved.
Steps followed are.
1. First rest and reversed the reversal document in FBRA. --> At this time the orginal document has again appeared in the line items as an open item.
2. It was also identified that along with the orginal document which appeared as open item all the items which was cleared using the orginal document also became the open item.
3. Now we have made the manual clearing of the line items uaing the transfer posting with clearing
Regards
Arun

Similar Messages

  • I want to reverse or reset the reversal document

    Hi All,
    Please help me whether & how a reversal document can be reversed or resetted. There is a write off doc which was reversed, I want to reverse/reset the reversal document.
    Thanks & Warm Regards,
    Kapil Nehra

    Hi Kapil,
    When you have a reversed a document, they'd become open again right?
    If you want to set them off again, suggest you to use account maintenance using either FP06 or FPMA.
    Then they would go back to old status.
    Clear?
    Rgds
    Rajendra

  • Error Rounding Difference too high when reset cleared document using FBRA

    My Client has posted cleared document with T_Code F-51. This cleared document has cleared 6040 open items.
    And now, they want to reset and reverse that cleared document.
    We found error "Rounding difference too high" when we are reset cleared document using FBRA.
    Kindly need your advice.
    Many thanks in advance.
    Regards,

    Hello,
    Please let me know the ERROR number.
    Regards,
    Ravi

  • Only reseting the cleared documents with exchange rate differences in FBRA

    Hello,
    we want only reset the cleared documents . We dont want to reverse the cleard documents. But When we try to do it we get a message Exchage difference are posted do you want to reverse it. Want we want to reset are in Doc.. currency. postings for August.
    As i know when we have exchange rate difference we  dont get an option only resettng but we get reseting and reversing.
    May i know how to slove this situation.
    Thank you
    Chaithra

    HiI
    f you set this selection field then the settings in the ERD Setting column for this currency type are no longer relevant. The system calculates and posts exchange rate differences between order-related goods receipts and invoices not just for materials with standard price, but also for:
    Materials with moving average price
    Account-assigned transactions
    Planned delivery costs
    The valuation of the inventories or consumption is effectively done at the exchange rate for the goods receipt, and not at the exchange rate of the invoice. When you post the good receipts, the fixed exchange rate from the purchase order is not used, but the translation of the purchase order values to local currency is always done at the posting date of the goods receipt.
    If you are using the material ledger with actual costing, the system does not include the posted exchange rate differences at period-end closing in the actual prices of the materials.
    Regards
    Antony

  • ICloud accidentally set-up with erroneous email acct. How do I reset the email originally used to start the Apple ID? I'm stuck in a loop...

    Hi Apple friends! Here's my frustrating situation. When I got the new computer (2012 Macbook Pro), I tried to set up iCloud but accidentally input an erroneous email acct. I cannot access iClod because the email was accidentally input as "[email protected]", not "[email protected]". How do I reset the email originally used to start the Apple ID? I'm stuck in a loop, and not only cannot use iCloud, but I keep getting messages popping up to register my iCloud with a non-existent email...
    Help?
    Sincerely,
    Cole
    [email protected]

    Have you tried to go into System Preferences > iCloud and entering the correct information there? You will first have to "sign out" of the wrong account and then log in with the correct information.
    If that does not work you should direct follow up to the iCloud for Mac forum.

  • I try to 'Print booklet' and receive an eror that "the active document uses multiple page sizes..."

    I try to 'Print booklet' and receive an eror that "the active document uses multiple page sizes..." but all the pages on my document are in the same size (as far as I know)
    How can I deal with this eror?

    This seems to be a bug, and so far the only workaround I know is  to copy/paste everything into a new file.

  • Reg:how to post the parked documents using BDC

    Duplicate message in General deleted.  Please do not post the same question in more than one forum.
    Hi
    I am creating parked Documents using FV50. I am able to check them using FBV0, I am able to select and post the documents using the same transaction. Its working fine. However I want to post the selected parked documents using BDC. I am having problems as the output in FBV0 is in ALV report format. HAving problems selcting the parked documents to be posted. As there any way to post the selected parked documents using BDC.
    Please suggest me a solution for this.
    Thanks,
    Satish
    Edited by: Matt on Dec 3, 2008 7:40 PM

    Hi Rob,
    Thank you for ur reply, can u send that code how u post the parked documents using BDC for FBV0 transaction.  Please send the code.
    Thanks,
    Satish

  • Firefox crashes when I try to reset the master password using chrome://pippki/content/resetpassword.xul

    # Question
    Firefox 3.6.10 on Windows 7 crashes when I try to reset the master password using chrome://pippki/content/resetpassword.xul. Is there an alternate way of resetting the master password?

    You can delete the 2 files that contain password details, they will be re-created automatically. First open the profile folder, for details of how to find it see the [[profiles]] article. Now close Firefox and delete key3.db and signons.sqlite. If there are files called signons.txt, signons2.txt and signons3.txt you can delete those as well, they are from earlier versions of Firefox.

  • COM object model not functioning after encrypting the word document using office extention

         After encrypting A word document using office extention, it seems like the COM object model becomes unusable. I cannot not manipulate the encrypt document through COM interface, nor can I write macro VBScript to do some operation on the docuent.
         For example, I create a word Macro with some simple code.
    Sub hi()
        Dim i As Integer
        i = ThisDocument.Fields.Count
        MsgBox i   
    End Sub
         If the document is not encrypt, then we will see a msgbox which tells us the number of bookmarks in the current document.
         Now, encrypt the word document using the office extention, running the macro code will fail with error code " 80004005" and error message:Method 'Fields' of bject 'ThisDocument' failed.
    It is very important for us to manipulate word documents through COM interface in our system, I want to know why the COM interface does not work anymore after the document is encrypted.

    I take macro script as an example to demonstrate that word COM object model cannot be used after encripted. Actually you can reproduce the same problem when you manipulate word document through COM interface using any programming language.
    For example, you can create a text document  with the following VBscript:
    set a = createobject("Word.Application")
    set doc = a.Documents.Open("E:\temp\test.docx")
    msgbox doc.Fields.count
    doc.close
    a.quit
    Save the document with ".vbs" file extention and then run it by double clicking it. it will fail if the document is encrypted using the office extention. 

  • HT4623 I have tried resetting an iPhone 3 and I am unable to activate and sync it. How can I reset the device without using a computer?

    I have tried resetting an iPhone 3 and I am unable to activate and sync it. How can I reset the device without using a computer?

    Hello anacc,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    Connect your USB cable to your computer but not to the iPhone, iPad, or iPod touch until step 3.
    Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.If you cannot turn off the device using the slider, press and hold the Sleep/Wake and Home buttons at the same time. When the device turns off, release the Sleep/Wake and Home buttons.
    While pressing and holding the Home button down, connect the USB cable to the iPhone, iPad, or iPod touch. The device should turn on.
    Continue holding the Home button until you see the Connect to iTunes screen. When this screen appears, you can release the Home button:
    Note: If the image of a battery appears, let the device charge for at least ten minutes to ensure that the battery has some charge, and then start with step 2 again. If you don't see the Connect to iTunes screen, try these steps 1 through 4 again.
    iTunes should automatically open and display the following message:
    "iTunes has detected an iPhone in recovery mode. You must restore this iPhone before it can be used with iTunes."Note: If iTunes not open after two minutes, please open iTunes yourself.
    Use iTunes to restore the device.
    Best of luck,
    Mario

  • Is possible Reset the reverse document ?

    I ask it because the system showed me >> u2018Resetting this reverse document is not possibleu201D

    Ailton,
    I am going to try to explain what is a reverse document and a cleared document.
    A reverse document normally is used to turn zero the amounts posted in some accounts.
    For example, you created a FI invoice to a vendor with the following characteristics:
    Item 01, Posting Key 31, Vendor number 001, Amount 1.000,00 BRL
    Item 02, Posting Key 40, Account number 33030001, Amount 1.000,00 BRL
    If you want to undo the invoice, this is not possible in FI module. What you can do is undoing the amounts posted in both vendor and account number, by creating the reverse document. Example:
    Item 01, Posting Key 21, Vendor number 001, Amount 1.000,00 BRL
    Item 02, Posting Key 50, Account number 33030001, Amount 1.000,00 BRL
    A cleared document normally is used to close the open item. An open item in FI module is a line item which depends on a cleared document to have its process closed. For example, let's say you didn't reverse the previous mentioned FI invoice. The vendor item needs to be cleared (imagine you should pay to the vendor 1.000,00 BRL and the cleared document will show to you the vendor has already been paid). Example:
    Item 01, Posting Key 21, Vendor number 001, Amount 1.000,00 BRL
    Item 02, Posting Key 50, Account number 33030001, Amount 1.000,00 BRL
    Hope you have understood all of this!
    Kind Regards,
    Daniel

  • Automatic payment program; reversal of a reversal of the clearing document.

    Hi All,
    I created a vendor open item and cleared it using APP. lets say clearing document no. is 1. I reversed it using FBRA and the document no. is 2.
    now I tried to reverse the document no. 2.
    in one scenario, where there is a FX difference when posting document 1, reversal of document 2 not happened.
    in other scenario, where there is no FX difference, I was able to post the reversal of 2.
    is this standard behavior? in the first scenario I wasn't able to post the reversal for Doc.2 is it because of FX gain/loss only? can't we post reversal of Doc. 2 if there is a realized FX difference gain/loss?
    Regards,
    Sreeni.

    Hello Sreeni,
    The standard SAP behaviour should allow FBRA on Doc.2 even when FX gain/loss has been posted as I had done it already.
    Things to take note are, the respective reversal document type had been defined and number range has been set up properly.
    Kind regards,
    John chin

  • REVERSE OF THE POSTED DOCUMENT......

    Hi All,
    Here is the situation where the wrongly posted document is to be reversed. The posting are made to an expence acct-and this is defined as cost element. But when the original transaction is posted there was no cost center input in the document line item, But when i try to reverse the docuement it is asking for cost object and giving me an error message?..
    I tried to change the filed status of the acct  from G004 (cost accts) to nornmal gl G001(Gl accts with Text),even than the problem still remains.
    And when i try to include costcenter in the changing rules for docuemnt line item this cost field is not coming into change mode?
    Plz advice and we are using 6.0 version.
    Best Regards

    Dear stefen:
    Just one question, if you define an account with cost element, cost object is necessary for posting. You said there is no cost centre in original document, that means other cost object is assigned or cost element is not created at that time.
    I suggest you should reduce the cost element valid period to make error posting is out of the valid period. And reverse document at original date.

  • How to restore a parked document after the reverse of the posted document?

    Hi All,
    I've created a parked document; later I've posted it.
    But I was wrong; now I've to reverse the document posted. Is there a way to restore the parked document?
    Thanks

    Hi
    Once FI Document Generated from park document, we con't revert back to park document.
    Regards
    Viswa

  • Return (122) and Reverse (102) the same document

    Hi,
    I made an goods receipt  mov 101, but the stock was wrong, then reversal document with 102 mov, then I can make a return (mov 122) for the same document that was reversed.
    Can anyone help me, how can I block mov 122 for the documents that have 102 mov.
    Thanks

    Mary & Jurgen,
    I did following:
    1) PO item 0020
    1a) GR 2 pcs in MIGO (mvt 101); --> material_document1 created
    1b) GR 2 pcs in MIGO (mvt 101); --> material_document2 created
    1c) Cancel "material_document1"; MBST (mvt 102); --> material_document3 created
    1d) MIGO-A02-R02 with reference to "material document1";mvt 122; --> material document4 created
    1e) MIGO-A02-R02 with reference to "material_document2"; mvt 122; --> error message M7021
    2) PO item 0030
    2a) GR 2 pcs in MIGO (mvt 101); --> material_document1 created
    2b) GR 2 pcs in MIGO (mvt 101); --> material_document2 created
    2c) Cancel "material_document1"; MBST (mvt 102); --> material_document3 created
    2d) MIGO-A02-R02 with reference to "material document1" (mvt 122); --> error message M7021
    The difference between the items: in ME22N I set GR based IV for item 0030 whilst this was not set for item 0020.
    Based on this I think:
    - if GR based IV is not set, system only checks the "GR/GI balance" for all item together, and doesn't check it for each particular material document
    - if GR based IV is set, system checks the balance for each material document separately.
    Is it OK?
    Regards,
    Csaba
    Edited by: Csaba Szommer on Jan 20, 2010 8:52 PM
    Edited by: Csaba Szommer on Jan 20, 2010 8:52 PM

Maybe you are looking for

  • Cant sync iPhone because itunes says this computer is no longer authorised

    whenever i try to sync my iPhone 5s to my computer (iMac.. the older/thick one), it backs up and works fine until it starts to download music and apps. it says that it cant sync to my iPhone because the computer is no longer authorised for the purcha

  • Tips for using the Forum - please read

    I saw this posted on another forum and thought it might help people here understand how to use the Forum and get more benefit from being here: Forum Tip: to reply to a post, please use the "Reply" button next to the message (the “arrow” button, secon

  • I dont have my computer back up, I have mountain lion. disc utility says corupt. built in recovery disc is good.

    I have had it partially back up and separate drives. What is the safest way to avoid losing any information.  I discovered the problem after turning it on and only a flashing folder apapeared with a plus sign.

  • Streaming from icloud to ipad

    Hi, Not sure if this has been asked before but...... I was wondering if it is possible to stream iCloud content (movies, or tv shows) directly to my Mac Book Pro rather than just streaming to my Apple TV? As my Mac has a monitor, I would sometimes li

  • Deleting users help???

    I am an administrator, but when I go in the System Preferances then to Users and Groups, The user I want to delete is not listed, yet when I log in to the account, it does exist. Also on the top right of my screen, I click my user name, and the user