Document splitting: Items for clearing not found

Dear All,
I have created bank gl without tick of open item management now i have activate OIM &  Transcation exisit for the same
I have done it as given below:
1) I have made GL balance Zero by posting an additional entry by F-02 (document type SA)
2) Block the GL for posting
3) though help of programe RFSEPA02 i have done the same.
Now the GL is OIM
Now i have to reverse the additonal entry pass to make GL balance zero
At the time of reverse through FB08 system gives an error massage
*" Document splitting: Items for clearing not found"*
Please any one help to resolve the issue
Thanks
Vijay

Dear Gladys xing
Thanks for your reply,
I have also done the same thing by passing one more entry to create the same balance.
When i am trying to clear open item for the both the extra entry system gives an same error
"Re: Document splitting: Items for clearing not found"
is this possible to clear that open item through F-03
Thanks
Vijay

Similar Messages

  • Document splitting: Items for clearing 0010/100062508/2010/001 not found

    HI Gurus,
    I hava issue with FC valuation. I have done configurtin for FC Valuation of GL A/c i.e, Long Term loan paybles which is created as Open Item management.
    It is working fine post the entries at the end of May and reversed  the same on 01.06.2010 in development system. i have moved saem request to Acceptance client and testing the same scenario.  But i am getting the following error.
    "Document splitting: Items for clearing 0010/100062508/2010/001 not found
    Message no. GLT0002
    Diagnosis
    Document splitting cannot perform clearing because it was not possible to find complete splitting information on the items to be cleared (company code 0010, document number 100062508, fiscal year 2010, item 001).
    System Response
    Clearing cannot be performed and the document cannot be posted.
    Procedure
    Exclude the affected item from clearing.
    It may be that this item was not posted with active document splitting. In this case, this item or document would have to be migrated."
    I have checked the docuemnt splitting config . In two systems it was same and doc.splitting was configurated very long back.
    Could any one help on the above error
    Thanks in advance
    PAVAN

    Hi Pavan,
    Please note the following, the error GLT0002 is normally caused by a change done in your customizing for splitting. Since you mentioned that this is happening for one company code, it seems to be that one change was made only for this company code in your SPRO settings.
    For example if you have activated open item managment subsequently on account or another example would be that you posted document prior to activation of document splitting.
    Please see section 5 of note 891144:
    Items posted while open item management was still inactive in G/L account master data cannot be cleared after open item management has been activated subequently if New G/L document splitting is active.
    Therefore, if document splitting is active, open item management should never be activated subsequently on accounts to which documents had already been posted with inactive open item management.
    Review note 891144 in full. I believe that this will help you resolve the issue.
    Best Regards,
    Vanessa.

  • Material Quantity difference document line item for HU

    Dear Experts,
    When I try to clear differences in LI21,  i get the error message as above.
    Error Message : 'Material Quantity difference document line item for HU'
    Any idea why this error occurs?
    Regards,
    Shetty

    Hello Shetty,
    It may be due to some stock inconsistency. You may try iin case of  a non HU managed storage location HU to run LX23 and it can fix discrepancy overwrting MM-IM with LE-WM data. But if it is a HU managed then you can run HUDIFF transaction but only to see if there is stock differences not to fix anything, usually SAP Support (Development Support) does that job.
    Have a nice day !!

  • Item SI_SHOWDESCONLY was not found in the collection

    To give a bit of an overview of the software I'm talking about, we have web applications that integrate crystal reporting (either BOE XI R2 or BOE XI R3.1 depending on the site). The relevant function that these sites perform is to allow the user to schedule a report which invokes the functionality through crystal to create a report scheduled to run at a specified time(s). These entries exist in the History tab of a particular report when viewed in the Central Management Console. This web application references a reporting library (DLL) that contains all the references (11.5.3300.0) to the various CrystalDecisions DLLs used to perform these functions
    We have a 2nd piece of software that runs a windows service on an application server which references the same reporting library as the web service. This service essentially cross references entries in our own database with the entries in the crystal database to see if they have processed, or reports back errors, it will "reschedule" a report if it has been deleted.
    The issue we are having is that the windows service fails with "Item SI_SHOWDESCONLY was not found in the collection" when calling the following lines of code:
    Dim ceScheduleDoc As CrystalDecisions.Enterprise.Desktop.Report
                    Dim ceSchedulingInfo As SchedulingInfo
                    Dim ceDestinationObjects As InfoObjects
                    Dim ceDestinationObject As InfoObject
                    Dim ceDestination As Destination                   
                  ceSchedulingInfo.BeginDate = dtTempDate
                        ceScheduleDoc.SchedulingInfo.RightNow = False
                        ceScheduleDoc.SchedulingInfo.Type = CeScheduleType.ceScheduleTypeOnce
                        ceDestinationObjects = ceInfoStore.Query("Select * from CI_SYSTEMOBJECTS Where SI_NAME = 'CrystalEnterprise.DiskUnmanaged'")
                        ceDestinationObject = ceDestinationObjects.Item(1)
                        Dim ceDisk As New DestinationPlugin(ceDestinationObject.PluginInterface)
    (if you need to see more of the code that happens in this method, let me know, but it's that sequence that blows up (this forum limits the amount of lines in a post, which is why i'm trying to limit what I display)
    I have a theory that the issue is that perhaps the service is trying to invoke a different version of the crystalDecisions.Enterprise.InfoStore reference, despite the fact that the project reference explicitly tells it to use 11.5.3300.0, our GAC does also include 12.0.1100.0 and 12.0.2000.0 and on some servers 10.5.3700.0.
    Is there perhaps a binding redirect occuring somewhere that I can find?? I've checked app.config and machine.config

    I will run modules utility
    but I should mention that the exact same code is run everyday by the web application to schedule reports, and calls those very same lines without issue, it's just when called from the service (on a different server) that it blows up, which is why I'm led to believe that it's an issue with the version of the DLL that it's trying to call
    i know in the web.config for the web app, you can explicitly specify that the DLL use certain versions of dlls with tags as follows:
    <system.web>
    <compilation defaultLanguage="c#" debug="true"><assemblies><add assembly="CrystalDecisions.CrystalReports.Engine, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.ReportSource, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Shared, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Web, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Enterprise.Framework, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Enterprise.InfoStore, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Enterprise.Web, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/></assemblies></compilation>
    </system.web>
    whereas the app.config for my service doesn't quite have that ability...unless it does and I don't know about it??

  • 'Item dependency "CURRENT_YEAR" not found in the EUL' error after 4i to 10g

    Hi All,
    I have successfully completed a Discoverer 4i to 10g (10.1.2.48.18) upgrade. There is only one EUL (EUL_US) and it has been upgraded to version 5.1.1. All the Workbooks are saved to the File System. However, during testing some of the Workbooks error when I try to open them in 10g - they still open successfully in 4i.
    <Dialog Box> Item dependency "CURRENT_YEAR" not found in the EUL
    <Dialog Box> Attempt to open Workbook failed
    CURRENT_YEAR is a function of custom Package RESEARCH.UDEF which is valid both at a database level and at a Discoverer Admin 10g Register PL/SQL Functions level.
    I tried deleting the Function "CURRENT_YEAR" from the 10g Admin Edition Tools -> Register PL/SQL Functions and then importing it again. I received the same Dependency error.
    Now the really bizarre thing.....
    The Workbook (2MG.DIS) has 2 Worksheets that both have Calculations that reference function CURRENT_YEAR. If I open the Workbook in Discoverer 4i, delete one Worksheet and save as 2MGb.DIS, then reopen the original and save the other Worksheet only as 2MGc.DIS. Both the individual Worksheets open in Discoverer 10g but the combined Workbook still gives the Dependency error. Weird huh?
    Any ideas help appreciated as I'm pulling my hair out here (and I need what I've got leftl!).
    Kind Regards,
    Gary.

    Hi all,
    The answer was really quite simple but it was what I hadn't included in my post that would have made it impossible for you to help.
    I hadn't mentioned that I was initially upgrading from 3i and it all seemed successful. I however was trying to open the Workbooks that had been created in Discoverer 3i directly in Discoverer 10g. That would explain the "bizarre" feature as I detailed in the post. As soon as I save the Workbook in 4i then I can open without issues in Discoverer 10g.
    Thanks for viewing my post and for your response Gianluca.
    Kind Regards,
    Gary.

  • "Item 1 was not found in the collection" error when saving to Enterprise

    We recently upgraded to Edge 4.0 and CR 2011.  I have a report that runs successfully within crystal reports, but if I try to save it to the Enterprise, I get the error "Item 1 was not found in the collection". 
    Prior to the error showing up, crystal hangs for about 3-5 minutes.
    The datasource of the report is a universe.

    Greetings,
    I recently also encountered this problem but it was unrelated to the firewall issues because both the server and client had their firewalls turned off.
    We upgraded from BOE XI R2 to BOE 4.0 and had the same error.  I fixed it by going into Page Setup in the report and clicking "No Printer".  For some reason BOE 4.0 has a problem with the original printer that was used to create the report.  The report then saved and ran fine on the server.
    Levin Conway
    Edited by: lconway on Dec 21, 2011 8:32 PM

  • TS1538 Followed troubleshooting for iPhone not found in devices iTunes and that did not work...  Now what?

    Followed troubleshooting for "iPhone not found in devices" iTunes and that did not work...  Now what?

    That's what I tried. The 6 steps and I do not have security software on my phone. iTunes on my Mac is still giving me the warning that I need to download the latest version on my phone, and is not recognizing it in devices, which is the irony because that's what I need to actually update it

  • How i can know that document splitting is enable or not ?

    Hi experts,
    how i can check that document splitting enabled or not ? Is it necessary that only new g/l activated system can enable such features ?
    regards,
    Sanju M S

    Hi,
    Check this path : Financial Accounting (New) -- General Ledger Accounting New -- Business Transactions -- Document Splitting -- Activate Document Splitting
    Hear you need to check whether Document Splitting is activated or not ... if it is activated select "Deactivate per compnay code" check if your company code is activated or not.
    This is a special feature in New GL ... this feature can be activated only in New GL system (From ECC 5 onwords)
    Regards

  • An error has occurred:Item SI_XSLT_INFO was not found in the collection

    I am trying to schedule a report in BO XI R3. But I get the below error when I click on the format link.
    An error has occurred:Item SI_XSLT_INFO was not found in the collection.
    Any ideas?
    Thanks

    I encountered this same problem. When going from XI R2 to XI R3, I had imported all the reports so converted to CR2008.  One of the users had a version of this report on his desktop from XI.  He saved it out to BOE XI R3 and then when trying to select format from Infoview when he was scheduling it, he would get this error message.  I just opened this report in CR2008 and then saved it back out to BOE and it worked fine.

  • Looked for but Not found

    I have looked for but not found. So that means that more than likely I have just not looked in the right place.
    What I am trying to find is the total number of contacts the the 8530 will hold. IE; 500? 1000?
    I know that each contact will take so many numbers and so many email address's but how many individual contacts will it allow you to add?
    STRIKE HOLD!
    Land of the Free Because of the Brave!
    Solved!
    Go to Solution.

    Hi and welcome to the forums!
    I have yet to see a credible source publish actual limits for records on any of the calendar, memo, tasks, or contacts apps. If you find one please post. I usually tell users to keep it manageable. To me 6,000 contacts? Seriously?
    Heck I wasn't stationed with 6,000 people in the U.S Army! .
    Remember the device memory is flash memory, designed for keeping all device functions running at peek levels. Storing large amounts of records just takes that much dynamic memory and makes it static.
    Let me know your thoughts!
    Thanks,
    Bifocals
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Su[12345] : passwdutil.so: nameservice switch entry for passwd not found.

    Hello all,
    I got a problem with my Sun Fire, with solaris 10, when my system boot, we got a powerfailed :-( and when my sun restart again after a long checkdisk with many errors... i got this error everytime i want to do a su.
    su[12345] : passwdutil.so: nameservice switch entry for passwd not found.
    I don't know how to fix that.
    If anyone have a working solution, i would be wonderfull :)
    Thanks in advance

    Use your service contract and open a support case with Sun.
    http://www.sun.com/secure/contact/
    You will then be able to draw upon all their support resources.
    They will be able to help you investigate the health of all the hardware,
    as well as work with you to decide whether you need to install all your
    software all over again, due to too much corruption in the filesystems.
    Electrical interruptions can sometime do some nasty things to data on disk drives.

  • Error while running Validation Data for category  not found in application

    Dear Experts
    While running Validation and IC Matching I am getting Error i.e. "Data for category  not found in application CONSOLIDATION"
    May some one tell me the reason and resolution.
    Thanks
    Ritesh

    Hi RItesh,
    I suppose your problem was solved in the meanwhile.
    Anyway we had the same issue, when running Validations against ICMatching App.
    That was because Method VALIDATION of Class CL_UJP_VALIDATE tries to relevant data in order to perform calculations (line 127), but if no data is found, ends raising an exception (with a misleading text line 143).
      read_trans_data_sqe( exporting i_application = d_application
                                     it_dim_list = dt_app_dim_list
                                     it_sel = lt_sel
                           importing
                                     er_t_data = lr_data
      assign lr_data->* to <lt_finance>.
      create data lr_data like line of <lt_finance>.
      assign lr_data->* to <ls_finance>.
      lr_data1 = lr_data.
      if <lt_finance> is initial.
    NO DATA FOUND -> EXCEPTION
        raise exception type cx_ujp_process_exception
              exporting textid = cx_ujp_process_exception=>ex_no_data_found
                        d_application = d_application
                        d_value       = l_value.
      endif.
    Hope it helps
    GFV

  • Validation- RUN_LOGIC:Data for category  not found in application T_SALES

    In BPC NW 7.5...
    I set up the validation business rules to check that Account A = Account B. When I run the validation package through DM, I got the error that stating RUN_LOGIC:Data for category  not found in application T_SALES. I have 3 members in my Category dimension: ACTUAL, FORECAST and PLAN. The same error appeared even if I hardcoded the category member in the script logic:
    *RUN_PROGRAM VALIDATION
    CATEGORY = %T_CAT_SET%
    CURRENCY = %RPTCURRENCY_SET%
    OTHER = [ENTITY=%P_CC_SET%]
    TID_RA = %TIME_SET%
    *ENDRUN_PROGRAM
    Do you guys have any clue on the error?
    Thanks in all advances,
    Yen Li

    Hello,
    this error isn´t about category dimension.  The system checks if all needed dimensions exists, and if not it gives this error. You can use debug to seach for the dimension in fault.
    Best Regards,
    António

  • Pcre-config for libpcre not found.

    hi
    When i am configuring apache to set reverse proxy.. i found the below error
    configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/
    when i check with pcretest it is showing me PCRE version 6.6 is available. but when configuring it is not connecting to this pcre. I am accessing a remote desktop.
    thanks

    hi
    When i am configuring apache to set reverse proxy.. i found the below error
    configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/
    when i check with pcretest it is showing me PCRE version 6.6 is available. but when configuring it is not connecting to this pcre. I am accessing a remote desktop.
    thanks

  • Balancing figure business area for line item 001 is not found

    hi
    In MB31 while doing Goods Receipt (Movement type:101) i am getting an error like "Balancing figure Business Area for line item001 not founr".  Document splitting is active in my system and i assigned business area for plant and division combination.  Why i am getting this error.  Anywhere else i have to assign business area.  Pls help me.

    hi,
    i am following rule no 1 and the assignment is fine over there
    it is working for all line items except one line item and giving message like above menctioned in subject line but if i check in line item 30 business area is exist like all line item i.e 1100
    for any information revert it
    regards
    bvdv

Maybe you are looking for