Reversed documents are not cleared

Hello there
I am dealing with support to customer who has following issue (among others..):
- the settings are made so that standard SAP reversing procedure is messed up! Namely, when the user reverse FI document the SAP creates new one (reversal document) but the original and reverse documents are not cleared against each other! It is also very hard to find out the connection between these two documents.
I have no idea where to look to check why this is happening.
I checked the reversal reasons, and all are set to 'negative postings', but I do not believe this is just because of that!
They have SAP ECC 5.0 version KERNEL 640
Best regards,
Amina
Edited by: Amina Bisic on Feb 28, 2008 9:39 AM

Hi
When any transaction is cleared with another transaction either it may be customer or vendors, the first line item will become closed status.
When you want to reverse the transaction you have to reset and reverse the transaction.
I mean when you reset it becomes open item then you can reverse the transaction.
Otherwise in your case it is only creating  a seperate lieme item
Thx

Similar Messages

  • Reversal documents are not being represented when 0PY_PP_C3 is being loade

    We use the 0HR_PY_PP_2 and 0HR_PY_PP_1 infosources to load the 0PY_PP_C2 and 0PY_PP_C1 ODSs. Then 0PY_PP_C1 updates the 0PY_PP_C3 ODS.
    Routines in the update rules include corresponding data from 0PY_PP_C2 during the update of 0PY_PP_C3. If there is no matching data in 2, then the corresponding records in 1 do not go into 3 Our process chain first loads 2, after it activates, it then loads 1, then updates 3.
    There are 5 reversal documents are in 0PY_PP_C2.
    The Update rules between 0PY_PP_C1 and 0PY_PP_C3 refer to the Posting Documents ODS: 0PY_PP_C2. 
    The issue is that the reversal documents are not being represented when 0PY_PP_C3 is being loaded.

    Hi,
    The simple solution is to debug the code written in the routine, as you mentioned that you already have some data in PP_C2 then check if that data is properly getting read in routine.
    After that check the condition based on which you are skipping records of PP_C1 and not loading into PP_C3. Is your condition perfectly working fine?
    Put a break point and check how the data is flowing.
    Regards,
    Durgesh.

  • GR/IR clearing all the documents are not clearing

    Dear Experts,
    In ob74 i have the following setings for my GR IR clearing a/c
    EBELN
    EBELP
    GSBER
    VBUND
    ZUONR
    My client is using F.13 clearing function.  But in that some entries are not clearing.
    Example of that
    Assignment               Docment no.  TYPE  Pk   Doc date   Psng Date  Amount in DC  Cur           Amt in Loc   Cur  Lcu  Reference
    450002593900002   5000004774      WE   50  26.5.2009   8.6.2009   2785.59-          SAR       2785.59-       sar
    450002593900002   5100006581      RE    40  07.11.2009  6.12.2009  2785.89-        SAR       2785.59-       sar
    Here assignemnt field is same and amount in DC is also same but can you please let me know the why it is not cleared.
    Thanks
    Bhaskar

    Hi Thank for the reply.
    In my goods receipt document
    entry is creating like
    81 Material
    96 GR/IR
    50 GR/IR
    and invoice
    31 vendor
    40 GR/IR clearing
    Can you please let me know how to crate these type of entries
    why it is getting created only these entries are not getting cleared thru F.13
    Waiting for your reply.
    Thanks
    Bhaskar

  • Resetting this reverse document is not possible - FBRA

    Hi,
    I'm trying to reset the cleared items with Tcode FBRA also system is throwing error like below
    ==================================================================================================
    Resetting this reverse document is not possible
    Message no. F5579
    *Diagnosis
    The system required a reverse document to be created after resetting a clearing procedure as otherwise documents would have been generated in the system which could not have been processed correctly. The following cases require the clearing document to be reversed:*
    Exchange rate differences were posted.
    =================================================================================================
    the document has items of exchange rate differences, but,
    Question: The exchange rate difference it's related with t-code  fagl_fc_val ???l

    Hi,
    Reverse the document using FB08 and input the reversal document no in the reset transaction FBRA.
    Hope it works.
    ~Andrew

  • Follow-on documents are not visible in MIRO in TEST server, awsys = PRD300.

    Dear Experts ,
    The Test Server was refreshed around mid-June 2011 with data of
    Production Server. The follow-on documents are not visible for the
    invoice documents in MIRO in TEST server due to value in tables
    BKPF,RBKP : field : AWSYS = PRD300 .
    The newly created Purchase Orders after the refresh, the accounting
    documents can be seen for the Goods Receipt (MIGO_GR-display) and
    Invoice documents (MIRO).
    we had already raised this issue in March & got the feedback from SAP
    as shown below.
    accordingly we have developed & run the program "zzlogsys2" which
    updates the Logsys/Awsys field from PRD300 ( of production server ) to
    that of the current server i.e. TST300 as required.
    after which the FI documents for the material documents are visible in
    MIGO,but follow-on documents are not visible for the invoice documents
    in MIRO.
    we have Checked notes 781498 and 28958 to see if the logical system is
    correctly assigned , where we found that in table RBKP after entering document number, Fiscal Year , the
    Field AWSYS is "PRD300" & not "TST300" as it should be. We will take up the activity of updating table RBKP
    also as we are currently doing for tables MKPF & BKPF.
    But to have clear picture as to what we are doing is correct , pl
    advise about the following :
    1) Is it a correct process done by our SAP-Basis team , that every time
    any Server ( e.g. Test or Quality ) is refreshed with Production server
    data, the Field AWSYS in various transaction tables gets value as
    "PRD300" which then is required to replaced by running program such as
    ZZlogsys.
    REPORT ZZLOGSYS.
    TABLES: T000, MKPF.
    DATA: NEW_SYS LIKE MKPF-AWSYS.
    PARAMETER: OLD_SYS LIKE MKPF-AWSYS.
    SELECT SINGLE * FROM T000 WHERE MANDT EQ SY-MANDT.
    NEW_SYS = T000-LOGSYS.
    CHECK NOT NEW_SYS IS INITIAL.
    UPDATE MKPF SET AWSYS = NEW_SYS
    WHERE AWSYS = OLD_SYS.
    WRITE:/ 'Number of updates: ', SY-DBCNT.
    2) if the above process is correct & normal , then which are the other
    tables in a particular server ,apart from tables MKPF,BKPF,RBKP , which
    needs to be updated the value of field "AWSYS" in the same way
    replacing value "PRD300".
    3) if the process in point no. 1 is not correct , then what is the
    correct process that the Basis team can do while refreshing any target
    server with production data so that target server retains its value in
    Field AWSYS & not showing "PRD300".
    With 3 servers TEST,DEV & Quality , recently refreshed with production
    server to bring all servers in Sync for a HR patch application, we have
    this situation now in all 3 servers .
    Thanks in advance ,
    Anil Shanbhag

    It is appropriate to move this thread from ERP-MM to [Enterprise Resource Planning (ERP)|Enterprise Resource Planning (SAP ERP);
    Edited by: Jeyakanthan A on Jul 7, 2011 4:56 PM

  • Lov returned items are not cleared in Jheadstart 11.1.1.4.26

    We are using Jheadstart 11.1.1.4.26 with Jdeveloper 11.1.1.4
    HR Testcase:
    Form UI
    Lov on the Manager_FirstName
    returns
    ManagerId -> ManagerId
    FirstName -> Manager_Firstname
    LastName -> Manager_Lastname
    1: Select a manager from the LOV popup. ManagerId,FirstName,LastName are filled
    2: Clear the Manager_Firstname from the Lov inputext. Returned Values should be automatically cleared (at least they used to in previous version). They dont in this version.
    I am sending a testcase to [email protected]
    Regards

    Thanks for looking at the testcase.
    I emailed you a new one with screenshots of the steps required to reproduce it.
    Conserning the previous test case I have sent, you are correct. I made a mistake by returning the
    ManagerId back to ManagerId where it should be EmployeeId copied back to ManagerId.
    However the items are not cleared in my Environment if you set a value from the LOV popup and then clear the value of the textinput. (No saving should be performed between these two steps).
    If you perform a save between these two steps the items are all cleared.
    Are you using Jdeveloper 11.1.1.4 ?
    Regards
    Vasileios
    Edited by: spooker on 6 Μαϊ 2012 10:03 πμ
    I am attaching another testcase with steps here. This is different from the one I emailed you but illustrates the same issue.
    It is as if the item the Lov is based on does not autosubmit when it loses focus (click somewhere in the page)
    steps to reproduce word document --> http://herosh.com/download/10867921/testcase.doc.html (just click the green download link)
    testcase--> http://herosh.com/download/10867918/HR.rar.html (just click the green download link)
    Edited by: spooker on 6 Μαϊ 2012 11:05 πμ

  • Backened documents are not getting updated in Classic Scenario

    Hi,
    We are using SRM 7.0 version and we are working on classic scenario where the shopping cart - RFX - Contract are created in SRM and the PO - GR - IR are created in ECC. The blackened documents which are created in ECC PO - GR and IR these documents are not getting updated in SRM system.
    Is there any business functions to be activated.

    Hi Sunil,
    You manually run report ""BBP_GET_STATUS_2" after PO is created in MM. Then check if the follow-on-docs are updated in SC.
    If it is working fine after you manully run report, you will have to properly set time to run this report automatically.
    Best Regards,
    Anu
    Edited by: Anuradha UG on May 18, 2010 8:09 PM

  • My old emails and documents are not showing up in email or finder both from the same date and I cannot find them anywhere. I do not believe I have any archive settings on. Any idea how I get them to show up?

    my old emails and documents are not showing up in email or finder both from the same date and I cannot find them anywhere. I do not believe I have any archive settings on. Any idea how I get them to show up?

    Hello gpbondi,
    The following article provdies step-by-step instructions for downloading your purchases both in iTunes and on your devices.
    Download past purchases
    http://support.apple.com/kb/HT2519
    Cheers,
    Allen

  • Images on websites are not clearly displayed

    Dear All,
    The last month or so i have noticed that images on websites are not as clear as they used to be. Seem to be fuzzy. This is not a great help when im buying cosmetics or clothes as the images are not clear enough to see what im purchasing. Its not just one website its all.
    Ive not changed anything on my laptop that i know of, its all running as when i purchased it.
    Does anyone have any suggestions for me to try?
    Lesley

    Hi
    Its not a notebook malfunction. There is all ok with the hardware. I assume you have changed something in the IE settings or the images on the websites are really blurred.
    You can try to check the settings in the IE option View. Check if the text size is set to medium and the encoding to Unicode (UTF8)
    What you can do also to reinstall the IE.

  • I updated my Iphone4S this week to the newest IOS 7.1 and now everyone who calls me says the calls are not clear, muffled.  Is there something I can do to clear this?  4 people in 4 different states that called me all said the same thing.

    I updated my Iphone4S this week to the newest IOS 7.1 and now everyone who calls me says the calls are not clear, muffled.  Is there something I can do to clear this?  4 people in 4 different states that called me all said the same thing.

    Settings > General > Reset > Reset Network Settings
    Contact the carrier to troubleshoot.

  • Unable to proceed in change document are not updating in CDHD, CDPOS tables

    Hi all,
    This is a question related to Change document.
    I created one custom Change document object ‘ZBUDGETS’.
    As I am trying to place a trigger on FMIT (Total Funds Management) table I created a Change document object ‘ZBUDGETS’.
    I included some of the authorized fields from FMIT table on which we placed the trigger.
    And of course all those fields are change document enabled in the data element level. I generation of the update program was completed. And I got the function module zbudgets_write_document along with some include programs and structure.
    Everything is fine, But i am unable to get this change document generated information to these tables are CDHDR and CDPOS.
    the problem is when I make any expenditure like PO Posting, it will be logging in the FMIT table and the respective fields also updating. With this the Change document object should trigger and it should send the record in CDHDR and CDPOS tables. This is not happening. If the records are getting updated in the CDHDR and CDPOS tables I can use those include programs and function modules in my program to retrieve the changes in FMIT table.
    Since I am unable to proceed further since the documents are not updating in CDHDR and CDPOS tables.
    Prabhakar

    CDHDR and CDPOS will not be populated with entries only by creating the change document object.Change documents will be written to CDHDR and CDPOS tables only if the function zbudgets_write_document is called in the transaction which updates FMIT.
    You need to find an use exit in the transaction updating FMIT and call the function zbudgets_write_document in that exit.
    Refer the below link http://help.sap.com/saphelp_47x200/helpdata/en/2a/fa01b6493111d182b70000e829fbfe/content.htm
    -Kiran
    *Please reward useful answers

  • Billing document are not flowing into FI and COPA

    Hello SAP CO gurus,
    please help me out by giving possible reasons why Billing document are not flowing into FI and COPA.
    what are the settings need to check?
    is there any option to get release by manual?
    Initiatives rewards with points........
    Regards
    Chandra.

    Hello Chandra,
    Check whether any standard cost estimate is existing for that material for which your billing. If it is there then check whether costing key from COPA is able to access the cost estimate.
    I am also working on the same issue but not solved yet.
    regards
    Nivas

  • Documents are not included in COPA

    Hi COPA Experts,
    The accounting documents are not included in COPA KE21N settings. could you please assist us how to include accounting document in COPA.

    Hi,
    Normally things from SD will be linked to COPA by linking the condition types in SD to Value fields in COPA.
    Similarly we can do the assignments for direct postings from FI also through the PA transfer sturcture for dicrect postings.
    Goto KEI2,  Select the Structure FI, select the source fields and select the direct costs/revenues item and double clieck on the source fields, here give the range of the GL accounts (expenses for irect costs, income Gl accounts for revenues) for which you want the direct postings to reflect in COPA.
    Selest the vlue field and give the valur field for the same.
    Due to these settings we can get all the transactions (incomes/expenses) that we directly posted in FI to come into COPA.
    And additioanlly when we are making a posting it is mandatory that we have to give the profit segment in the transaction you make.
    Define the profit segment and assign it in the profit center, later in the posting selest the segment and this will act as a cost object that will help things to be reflecte in COPA.
    Otherwise the posting will not be reflecting in the COPA report.
    Hope this helps.
    Thanks,
    Shilpa.

  • Documents are not visible with layoutset AppBulletinBoardExplorer

    Hi experts,
    I created a km navigation iview with layoutset AppBulletinBoardExplorer. I created a new networklocation on my PC to the portal repository and upload a lot of documents (becasue a multiple upload from the portal is not possible). The documents are not visible in the iview. When Is change the layout set to ConsumerExplorer the documents are visible. A reboot did not help. If the documents are saved from the portal again, they are visible. Another layoutset or to upload file by file is also not an option.
    How to solve this problem? .
    gr
    Joeri

    Hi Simon,
    thanks for your reply!
    1. Have you tried mass upload via explorer into one KM folder then move the documents you uploaded into another area using the standard UI?
    I have moved the content via KM content option, but problem still exist.
    2. Have you checked the trace files on the portal to see if there is some error being logged that is not showing in the UI, but might give you a clue as to what is going on?
    In the log there is a warning:  user | ACCESS.ERROR"| /KM path | node_create_child. Everyone has read permissions.
    3. Have you raised an support message with SAP?
    not yet
    4. Have you tried using the Portal Drive rather then just windows explorer? (probably won't make a different as I think it uses webdav anyway)
    With the portal drive the same issue :-(.
    It's something with the layoutset in combination with upload via webdav or explore. The documents are also available with a search
    gr
    Joeri

  • Safari 4 fonts are not clear on the screen.....

    I downloaded and installed Safari 4 for Windows over the weekend.
    I find that the fonts are not clear...they are actually fuzzy. Right now I have this page side by side with another browser and the type is definitely different.
    Any thoughts?
    Thank you
    Elliot

    First, try resetting your phone:
    Press the sleep/wake button & home button at the same time, keep pressing until you see the Apple logo, then release.

Maybe you are looking for

  • Restoring pre-migration DPM Database - Reporting Tab issue

    Before migration, upgraded DPM 2010 to 2012 thru to 2012 R2. Took backup of database. Built new Windows 2012 R2, SQL 2012 SP1 & DPM 2012 R2. While database is blank, DPM seems to work fine. Restored pre-migration backup of DPM database over this new

  • Opening mac image in windows 2000

    Can anyone please help me? I have a mact pict file saved on a usb key and need to open it in windows. Any ideas?

  • How do I get a specific website to load?

    All of a sudden, this afternoon, firefox quit loading any of my schools student web pages. I asked all of my classmates if they were having this issue and the answer was no. I called the school tech support, they checked the server, and said it had t

  • T420s: Strange shape on the screen

    Dear Community, since several days I hav this strange shape on my T420s screen. It sometimes gets weaker, but in general it expands. What is this and what can I do?? Many thanks!! Kerstin Link to image Moderator note: images totalling more than 50k c

  • Modifying Primative shapes in Illustrator CS4

    Hi I know you can change the properties of primitive shapes (star, polygon, rounded rectangle etc) using the left, right, up and down arrows as well as Ctrl and Alt. However, these settings change the default of the tool for the next time you draw a