Error searching number of items in folders

Trying to find empty folders, but even looking for less than 2 still give results with more! Need a fix!

Same problem here.
"Kind is folder" + "Number of items is less than 1" gives me nothing at all.
"Kind is folder" + "Number of items is less than 2" gives me everything (empty folders but also the full ones including more than 2 items).
Still peeling the onion to understand the reason. I have to do all operations from terminal, can't use spotlight since more than a year :-(

Similar Messages

  • Error "Maximum number of items in FI reached"

    Hi All,
    We are getting error "Maximum number of items in FI reached", if there are more than 999 items. We have found an SAP note "Note 36353 - AC interface: Summarizing FI documents".
    This note seems to do more with customizing & doesnt need any code changes.
    Our system is of release 4.6C, My concern is that, in the note it has been mentioned in the correction instruction 1258 that for release 4.6C the Valid Support Package is 46C-ALL SUPP. PACKAGES.
    If this support package is not available in the system does this SAP note work. I mean is this the prerequisite.
    Kindly suggest if this is the correct note as well.
    Thanks & Regards
    Abhii

    Hi Abhii,
    Please see following threads..
    Re: Maximum number of items in FI reached
    http://www.sapfans.com/forums/viewtopic.php?f=6&t=301319
    Hope this helps...
    Best Regards,
    Archana

  • A/c Error 'Maximum number of item in FI reached' during invoice posting

    Invoice is created with multiple Delevery So no.of entriies has increased and accounting document has not been created due to error 'Maximum number of item in FI reached'.
    Accounting document not generated. How it be solved.
    Regards,
    Sohail

    dear
    maximum number of accounting line items is 999.
    if the total number of line items exceeds that value .. it would cause the error ....
    speak to FI guy and abap guy ..may be it could be increased but as far as i know its not changeable.
    you just need to reduce the items and processes in parts..
    regards

  • MRER Error - Maximum number of items in FI reached

    Hello Everyone,
    We have just upgraded our system to ECC 6.0 and we run the automotive extension set.  After the upgrade, when running MRER (RMMR1MRR) for a few vendors, we receive the following error message:
    Maximum number of items in FI reached
    I'm just curious to know if anyone else is running ERS in a like fashion, and if you've received this type of error. 
    Thanks in advance for your help!
    John Duncan

    Hi Abhii,
    Please see following threads..
    Re: Maximum number of items in FI reached
    http://www.sapfans.com/forums/viewtopic.php?f=6&t=301319
    Hope this helps...
    Best Regards,
    Archana

  • Error  "Maximum number of items in FI reached"   and " A syytem error is oc

    Hi All ,
    When i am upload recived goods by using movement type 202  using bapi
    bapi_goodsmovement_create  and line item is around 1000  then i m getting error some times
    "Maximum number of items in FI reached"   and " A syytem error is occuring when locking "
    plz tell what i  have to do
    thnx in advance

    FI documents have a 3-digit item counter that limits the number of
    items permitted per document.
    max 999
    solution
    << Cut and paste without attribution from the long text of the error message removed >>
    Edited by: Rob Burbank on Nov 27, 2009 3:12 PM

  • Use Windows PowerShell to count and list total number of items in Folders E-Mail in Office Outlook?

    I have the need to generate a list of all outlook folders and the total number of items listed beside each folder name. I thought I could simply modify the script from " http://blogs.technet.com/b/heyscriptingguy/archive/2009/01/26/how-do-i-use-windows-powershell-to-work-with-junk-e-mail-in-office-outlook.aspx
    " regarding the total number of items in the junk folder but no luck.
    I thought I could just simply duplicate line 6 of the aforementioned script
    "$folder = $namespace.getDefaultFolder($olFolders::olFolderJunk) " and change the folder name but getting the "Method invocation failed because [Microsoft.Office.Interop.Outlook.OlDefaultFolders] does not contain a method
    named 'olFolder'.
    At line:7 char:1
    + $folder = $namespace.getCurrentFolder($olFolders::olFolder("Design Engineering S ...
    I've found a way to export a list of all these folders using exportoutlookfolders.vbs to a txt file but doesn't include total number of items.
    Looking for any pointers on how to make this work. Don't expect anyone to write it for me but I am still learning PS. Would be great to find a way to import all of these folder and subfolder names into the script. Will be appreciative of any advice though.
    There's an enormous amount of Outlook folders.
    Outlook 2013
    Windows 8
    Thanks,
    Barry

    Since I am not and administrator, but an end user, I do not have access to the Get-Mailxxxx commandlets to make this really easy and had to do this long hand.
      The following will pull folder.name, folder.items.count, and sum the total size of each folder's items for all folders and their subs. 
    Just one warning, the summation can take some time with a large PST file since it needs to read every email in the PST. 
    There is also some minor formatting added to make the results a little more readable.
    $o
    = new-object
    -comobject outlook.application 
    $n
    = $o.GetNamespace("MAPI") 
    $f
    = $n.GetDefaultFolder(6).Parent 
    $i
    = 0
    $folder
    = $f
    # Create a function that can be used and then re used to find your folders
    Function
    Get-Folders()
    {Param($folder)
     foreach($folder
    in $folder.Folders)   
    {$Size =
    0
    $Itemcount
    = 0
    $foldername
    = $folder.name
    #Pull the number of items in the folder
    $folderItemCount
    = $folder.items.count
    #Sum the item (email) sizes up to give the total size of the folder
    foreach ($item
    in $folder.Items)
    {$Itemcount
    = $Itemcount
    + 1
    $Size =
    $Size +
    $item.size
    Write-Progress -Activity ("Toting size of "
    + $foldername
    + " folder.")
    -Status ("Totaling size of "
    + $Itemcount
    + " of "
    + $folderItemCount
    + " emails.")
    -PercentComplete ($itemcount/$folderItemCount*100)
    # just a little formating of the folder name for ease of display
    While($foldername.length
    -le 19){$foldername
    = $foldername
    + " "}
    #Write the results to the window
    Write-Host ("-folder "
    + $foldername
    + "  
    -itemcount " +
    "{0,7:N0}" -f
    $folderItemCount +
    "   -size " +
    "{0,8:N0}" -f ($size/1024)
    + " KB")
    #If the folder has a sub folder then loop threw the Get-Folders function.
    #This two lines of code is what allows you to find all sub folders, and
    #sub sub folders, and sub sub sub for as many times as is needed.
    If($folder.folders.count
    -gt 0)
    {Get-Folders($folder)}
    get-folders($folder)

  • Compare number of items in two folders then move an item if same number

    Hello,
    I've succesfully created a Folder Action with Automator that once an image file is dropped into a folder called "Funnel", that file will run through some Photoshop processing and then be saved in two different formats in two respective folders (let's call the two folders "A" and "B").
    The problem that I'm running into is that I can't drop a bunch of files into the "Funnel" folder at once because it will bog down Photoshop. My solution to this is to create a folder called "Waiting Room" where I will dump a large amount of files. I'm trying to write a Folder Action/AppleScript that will recognize when a file (or files) have been dropped into "Waiting Room", it will then look at the number of items in folders "A" and "B" and if the numbers are the same, that means that Photoshop is done processing the last image it worked on and is free for more work. If that's the case, it will move the last item in the "Waiting Room" to "Funnel" which will then process the file. Because Photoshop will save one format to folder "A" before it saves another format to folder "B" the two folders wont have the same number of items and "Waiting Room" will not be able to transfer another file to "B" until both folders have the same number of items again. This should force it so that Photoshop is only receiving one image file at a time to process.
    This is what I've done so far and it isn't working.
    I get the following error:
    Please help! I'm pretty new to all of this and am guessing at the AppleScript stuff. Thank you!!!

    Thank you so much Niel! I no longer get the error. The only thing is, it only processes one file and then the rest of the files just sit in the "Waiting Room" folder. I thought that writing 'return 30' would make the script check folders "A" and "B" every 30 seconds, esentially looping the script, but it isn't working. Thoughts?
    Also, keep in mind that there is a short moment where the last file in "Waiting Room" has been passed to the "Funnel" folder and photoshop is doing it's thing and is about to save a version of that file in folder "A". So although Photoshop is currently busy, folders "A" and "B" still have the same quantity, so the script may want to throw a bunch of files into "Funnel" rapidly until Photoshop finally saves something in "A" and it no longer matches the quantity in "B". That's why I thought a 30 second buffer might be a good idea.
    Thanks again for taking the time. Cheers!

  • Document Summarization - Maximum number of items in FI reached

    Hi
    I'm having a problem regarding document summarization.
    When trying to settle pipeline with tranaction MRKO and i'm getting an error "Maximum number of items in FI reached", this is due to the lines on the document being more than 999.
    I have in customizing, in transaction OBCY entered that summarzing being done.
    Can you please let me know exactly what fields I must summarize by or how to get it to work??
    Thanks in advance

    Hi
    I have tried using business transaction BKPFF,I have listed the below fields
    BSEG-MATNR
    BSEG-MEINS
    BSEG-MENGE
    BSEG-WERKS
    These fields are now blank in the accounting document. But it is still not summarizing. I have noticed that the text field is populated with different text.
    Is it possible to make this blank also? I'm hoping this is the problem.
    Or is there a way to tell the system to create several documents rather than one document?
    Apprecaite any response

  • Maximum number of items for an FI document ('999') has been exceded

    Hi,
    I have try to move some materials from one storage location to another using  MB1B transaction. And i receive following error:
    Maximum number of items for an FI document ('999') has been exceded.
    Please someone help me.
    Thank you.

    Dear Dan
    As you would be aware one FI document can have line items upto a maximum of 999 and it seems, you are trying to input more than that and hence the error.
    Try to minimise the number of line items and retry.
    thanks
    G. Lakshmipathi

  • Maximum number of items in FI

    Hi All,
    When performing the GR for 421 lines, there is a warning message error "Maximum number of items in FI reached".
    What is the maximum number?  and where to see the setting?
    Thanks.

    edward, standard SAP system does not allow more than 999 line in FI document and that is the reason you are getting this message. now logical question is you have only 421 lines in GR then why still system giving this message - answer is - these 421 lines will have more than 999 items in FI based on multiple entries in accounting per line (for example debit, credit, price diff etc)
    to understand and resolve this issue please see below wiki doc:
    http://wiki.sdn.sap.com/wiki/display/ERPFI/Systemlimitationof999lineitemsperFIdocument
    yogesh

  • Message no. F5727:maximum number of items reached in FI sereen MI07

    hi sap techies
    Message no. F5727:maximum number of items reached in FI in screen MI07
    when i try to post inventory difference in MI07(Physical difference posting) i give  the difference amount and reason for movement and i try to save it.it gives me the error maximum number of items in  FI reached please help
    kind regards
    sap fico
    arman
    Edited by: akausar on Oct 10, 2011 3:23 PM

    Dear Akausar,
    The error F5 727 is an error from the FI component side.  This is
    because FI cannot accept a posting document with more than 999 line
    items.
    There is a limit of (999) line items which can be posted per FI
    document.  This is because the line item number (BSEG-BUZEI) field
    length is defined as (3) numeric positions, i.e., (999) line items.
    The fact that an MM document contains X positions, doesn't
    mean that the FI document will contain the same number. This is the
    reason why in some occasions the error message is triggered when posting
    an invoice in MM.
    Please bear in mind the 'rule of the thumb' for this kind of scenarios
    in which you have a large MM-Document: consider an average of 4 line
    items created for each line: this is due to discounts, tax postings,etc.
    Unfortunately, there are no immediate plans to expand the number of
    line items beyond the current limit of (999) lines per document.
    SAP's Development group is aware of this functionality change request;
    however, the change is massive because BSEG is a cluster table which
    is used in numerous R/3 programs.  The most commonly used workarounds
    are as follows:
    1)  Implement FI summarization (per note 36353).
    2)  Cancel the original billing document and split it into smaller
        documents using different payment terms but actually with the
        same terms.
    This will avoid the (999) line item limit for FI postings.
    br, Guido

  • Max Number of items for an FI document (999) has been exceded

    Dear Guru's
    I hav production Bom For A ( Truck) , and now when i declare the production it gives me an ERROR :-
    Max Number of items for an FI document (999) has been exceded.
    How i can overcome this error!!
    Please help
    Regards
    Rahul Bhardwaj

    Hi
    You cant post more than 999 line items in FI document and you need to split the document if line items crosses 999.  It looks your production BOM itself contains some errors.  Check it.  Becoz no production BOM contains such a huge materials.  Splitting the BOM into sub BOM may be another option.
    Srinivas

  • Maximum number of items that can be serialized or deserialized in an object graph is '65536'.

    I meet the this error:
    Maximum number of items that can be serialized or deserialized in an object graph is '65536'. Change the object graph or increase the MaxItemsInObjectGraph quota.
    How to solve the above error?

    Hi gdedshg,
    >>Maximum number of items that can be serialized or deserialized in an object graph is '65536'. Change the object graph or increase the MaxItemsInObjectGraph quota
    When meet the above exception, please try to do the following configuration:
    On the server side:
    Add the following to the server's config file:
    <behaviors>
    <serviceBehaviors>
    <behavior name="MyServiceBehavior">
    <dataContractSerializer
    maxItemsInObjectGraph="2147483647" />
    </behavior>
    </serviceBehaviors>
    </behaviors>
    And reference it in the service using the following code:
    <services>
    <service
    behaviorConfiguration="MyServiceBehavior"
    name="serviceName">……
    On the client side:
    Add the following: 
    <behaviors>
    <endpointBehaviors>
    <behavior name="MyClientbehavior">
    <dataContractSerializer
    maxItemsInObjectGraph="2147483647"/>
    </behavior>
    </endpointBehaviors>
    </behaviors>
     And reference it in the endpoint using the following code:
    <endpoint address="serviceAddress"
    behaviorConfiguration="MyClientbehavior"
    For more information, please try to refer to the following article:
    http://blog.aggregatedintelligence.com/2011/01/wcf-maxitemsinobjectgraph-error.html .
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I get nothing but error messages, -"Your IMAP server wants to alert you to the following: 113 that mail is not available" or 364? there are hundreds stacked up.You must give answers to how to fix these when we do "search" add the error code number

    I get nothing but error messages, -
    "Your IMAP server wants to alert you to the following: 113 that mail is not available"  or  the same with:  364? 
    Now there are hundreds stacked up on my desktop.
    I cannot find the answer anywhere. You need to  give answers to how to fix these errors because when I  "search" "error code" or the number there is NOTHING. NOTHING!  Yet you give us these stupid error codes
    then you do not give us ANYTHING on how to fix these. These error codes make me so mad it makes me hate outlook, and hate the developers and hate microsoft.  How in the world can you give us ERROR codes without the explanation of what
    to do or how to fix it. You need to  add each  error code number in your "search" then explain what it is and how to fix it.  I am not a tech. I am a lawyer. I have googled the entire string of error code and nothing is clear.
    So, for the last several years, I get these error codes. Also, there is another error code that won't go away--it is the password error code that asks if I want to store the password. Yes, so I say YES. but it pops back. I am sick of this. This is the reason
    I hate Microsoft and I love google. #1 they respond to error, #2 them try to fix them you do not. I paid the full price to buy the OUtlook 2010, almost $500 just to get outlook, and all I got was error codes. I could not even open it because all I would get
    was that error codes and NO ONE knew how to fix them. WHAT IS YOUR PROBLEM that you cannot fix the stupid error codes that you imbed? PLEASE HELP

    Hi,
    I understand how frustrated you are when facing such an issue, maybe I can provide some suggestions on the problem.
    Based on the description, you should be using an IMAP account setup in Outlook. As for the error message, usually it's caused by a corrupted message on the Server. I suggest you logon the Webmail site, check if sending/receiving emails works well.
    If you find any unusual emails that cannot be read or sent, try deleting them to try again.
    I also suggest you create a new profile to setup the IMAP account:
    http://support.microsoft.com/kb/829918/en-us
    Contact your Email Service Provider to get the correct and latest account settings, since you have been using Outlook for years, some settings may have been changed while you haven't been informed.
    For the steps to setup an account in Outlook 2010, please refer to:
    http://office.microsoft.com/en-001/outlook-help/add-or-remove-an-email-account-HA010354414.aspx
    I hope this helps.
    Regards,
    Melon Chen
    TechNet Community Support

  • I am trying to update a number of items which the software check brings up:      It runs and says it is installing but at the end I get this error message:    The update could not be expanded, and may have been corrupted during downloading. The update wil

    Hi,
    I am trying to update a number of items which the software check brings up:
    It runs and says it is installing but at the end I get this error message:
    BUT then I ge tthis:
    Can anyone help me to enable the software to update?
    Thanks

    Thanks.  Something isn't right as I just tried to download the iphoto update - it said it had competed the download but then when I clicked on the download item I get this:
    Think will have to take it into the store.....
    thanks for replying.

Maybe you are looking for