AIAB- maximum number of distribution rule gruops has been reached

Hi experts,
I am getting the error u201CMaximum no. of distribution rule group has been reachedu201D, while running Transction code - AIAB for distribute asset for the asset capitalization from AuC.
Anybody facing this type of error earlier if yes how to resolved
thanks
gkumar

The objects reached to 999 hence system is throwing error.
So you can delete some of them if not required and create a new one. Check below
On the basis of your entries in the settlement rules, the system automatically determines the processing sequence for the settlement objects so that you can settle all objects completely. Each object is given a hierarchy number between 0 and 999. The object with the highest number is settled first and the object with the lowest number is settled last.
For example, repair or maintenance orders have hierarchy number 100. Orders for a turbine or cooling have hierarchy number 050, and the order for your power station has hierarchy number 000. Therefore, the system first settles the repair- or
maintenance costs to the turbine or cooling, and then settles these orders to the power station.

Similar Messages

  • Event ID: 4, Source: Microsoft-Windows-Kernel-EventTracing, maximum file size for session "ReadyBoot" has been reached.

    Hello,
    I upgraded my machine to Win7 x64 Pro about 3 weeks ago. My HW is an Asus mobo, Intel Q9450 w/8GB RAM. The boot drives are two Raptors configured as RAID01. All the drivers are the latest available from Intel, Asus and 3rd party vendors. My WEI is 5.9, limited by the disk transfer rates, otherwise 7.1 and 7.2 on the other indexes.
    I've been receiving these errors at boot;
    Log Name:      Microsoft-Windows-Kernel-EventTracing/Admin
    Source:        Microsoft-Windows-Kernel-EventTracing
    Date:          11/10/2009 7:51:03 AM
    Event ID:      4
    Task Category: Logging
    Level:         Warning
    Keywords:      Session
    User:          SYSTEM
    Computer:      herbt-PC
    Description:
    The maximum file size for session "ReadyBoot" has been reached. As a result, events might be lost (not logged) to file "C:\Windows\Prefetch\ReadyBoot\ReadyBoot.etl". The maximum files size is currently set to 20971520 bytes.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Kernel-EventTracing" Guid="{B675EC37-BDB6-4648-BC92-F3FDC74D3CA2}" />
        <EventID>4</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>1</Task>
        <Opcode>10</Opcode>
        <Keywords>0x8000000000000010</Keywords>
        <TimeCreated SystemTime="2009-11-10T12:51:03.393985600Z" />
        <EventRecordID>28</EventRecordID>
        <Correlation />
        <Execution ProcessID="4" ThreadID="164" />
        <Channel>Microsoft-Windows-Kernel-EventTracing/Admin</Channel>
        <Computer>herbt-PC</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data Name="SessionName">ReadyBoot</Data>
        <Data Name="FileName">C:\Windows\Prefetch\ReadyBoot\ReadyBoot.etl</Data>
        <Data Name="ErrorCode">3221225864</Data>
        <Data Name="LoggingMode">0</Data>
        <Data Name="MaxFileSize">20971520</Data>
      </EventData>
    </Event>
    The image for PID 4 is listed as System.
    My searches have turned up similar events listed but no solutions.
    Any help would be appreciated.
    Cheers!

    Session "Circular Kernel Context Logger" failed to start with the following error: 0xC0000035
    As suggested above I assume this is a microsoft issue?  It has been discussed here and other forums for quite some time.  I never have seen a fix?  I wish when we received errors of this nature microsoft would tell us what they were.  How is this related to superfetch?  What is superfetch?  Why would superfetch have changed?
    BY THE WAY....  Superfetch is on(started) is on automatic and logs on as local system.  So this is not the cause of my issue.  Also what is readyboot?  Does the average computer really know what these programs/services or unique microsoft words/terms are?
    System
    Provider
    [ Name]
    Microsoft-Windows-Kernel-EventTracing
    [ Guid]
    {B675EC37-BDB6-4648-BC92-F3FDC74D3CA2}
    EventID
    2
    Version
    0
    Level
    2
    Task
    2
    Opcode
    12
    Keywords
    0x8000000000000010
    TimeCreated
    [ SystemTime]
    2010-04-11T14:35:49.829600000Z
    EventRecordID
    25
    Correlation
    Execution
    [ ProcessID]
    4
    [ ThreadID]
    48
    Channel
    Microsoft-Windows-Kernel-EventTracing/Admin
    Computer
    Daddy-PC
    Security
    [ UserID]
    S-1-5-18
    EventData
    SessionName
    Circular Kernel Context Logger
    FileName
    ErrorCode
    3221225525
    LoggingMode
    268436608
    Windows7, Windows, Win7

  • The maximum report processing jobs limit configured has been reached -Error

    I have Created a common page that has a CrystalReportViewerControl (name of this page is ShowReport.aspx). The report name and database name that required for the report is being passed in a querystring. The database connection info is being pulled from the web.config file. All of the reports that I am dealing with have dynamic parameters and the Crystal Prompt page is automatically being created by the crystal viewer for these. Everything in my application is working fine except that when I try to access any report for the 76th. time I get the following error "The maximum report processing jobs limit configured by your system administrator has been reached."
    I have already researched this error and am aware that the PrintJobLimit can be modifed to increase this limit or can be set to -1 if we need to allow unlimited connections. However doing this is not an option due to the degradation of server performance.
    The other option that I have tried is to make sure I close and dispose of the report document object on the Page_unload or the page_SavedStateComplete() however on doing so even the session variable that I am using to store the originally created reportdocument is loosing all of the values it requires to display the report. The session variable is still available i.e. it is still of type report document but it has no values for any of the properties like FileName, database etc , basically for all of those properties it show an error "Invalid File Path" when viewed in debug mode.
    I have already tried several approaches but with no luck. Every single time I close the originally created ReportDocument object I loose all the required values in the Session
    I am using Crystal Report XI R2 , .Net 2.0 and ASP.net
    Following is the code: (Any help will be highly appreciated) Thanks:
    Option Strict On
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports System.Data.SqlClient
    Imports System.IO
    Partial Class _ShowReport
    Inherits System.Web.UI.Page
    Private FechReport As ReportDocument
    Dim strSelectedDatabase As String
    Dim strReportsFolderPath As String =
    System.Configuration.ConfigurationManager.AppSettings("ReportsFolderPath").ToString()
    Dim strReportFileName As String
    Dim strReportFullPath As String
    Dim iInsertedLogId As Integer 'This variable is used to store the inserted log id for the executed report.
    Dim strConnString As String = System.Configuration.ConfigurationManager.AppSettings("ConnString").ToString()
    Dim strServerName As String = System.Configuration.ConfigurationManager.AppSettings("CR_ServerName").ToString()
    Dim strUserName As String = System.Configuration.ConfigurationManager.AppSettings("CR_UserName").ToString()
    Dim strPassword As String = System.Configuration.ConfigurationManager.AppSettings("CR_Password").ToString()
    Protected Sub Page_OnSaveStateComplete(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.SaveStateComplete
    If IsPostBack Then
    If iInsertedLogId > 0 Then
    UpdateReportLog_ReportServedTime(iInsertedLogId)
    If Not FechReport Is Nothing Then
    FechReport.Close()
    End If
    End If
    End If
    End Sub
    Sub Page_Unload(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Unload
    If Not FechReport Is Nothing Then
    'FechReport.Close()
    'FechReport.Dispose()
    'GC.Collect()
    End If
    End Sub
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    Dim sRptFileName As String
    If Request.QueryString("database") "" Then
    strSelectedDatabase = Request.QueryString("database")
    Else
    Response.Write("A Valid Database has not been supplied to this page")
    Response.End()
    End If
    If Request.QueryString("ReportFileName") "" Then
    strReportFileName = Request.QueryString("ReportFileName")
    strReportFullPath = strReportsFolderPath & strReportFileName
    Else
    Response.Write("A Valid Report has not been supplied to this page")
    Response.End()
    End If
    sRptFileName = strReportFullPath
    If Not IsPostBack Then
    FechReport = New ReportDocument
    If Not FechReport Is Nothing Then
    ShowReport(sRptFileName)
    End If
    Else
    If (Session("oReportDocument") Is Nothing) Then
    FechReport = New ReportDocument
    ShowReport(sRptFileName)
    Else
    'FechReport = New ReportDocument
    'FechReport = CType(Session("oReportDocument"), ReportDocument)
    myCrystalReportViewer.ReportSource = Session("oReportDocument")
    'myCrystalReportViewer.ReportSource = FechReport
    End If
    End If
    End Sub
    Public Function ShowReport(ByVal strReportFileName As String) As Boolean
    Dim blNoErrors As Boolean = True
    Dim crDatabase As Database
    Dim crTables As Tables
    Dim crTable As Table
    Dim crTableLogOnInfo As TableLogOnInfo
    Dim crConnectionInfo As ConnectionInfo
    FechReport.FileName = strReportFileName
    myCrystalReportViewer.ReportSource = FechReport
    crConnectionInfo = New ConnectionInfo()
    With crConnectionInfo
    .ServerName = strServerName
    .DatabaseName = strSelectedDatabase
    .UserID = strUserName
    .Password = strPassword
    End With
    Try
    crDatabase = FechReport.Database
    crTables = crDatabase.Tables
    For Each crTable In crTables
    crTableLogOnInfo = crTable.LogOnInfo
    crTableLogOnInfo.ConnectionInfo = crConnectionInfo
    crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    Catch ex As Exception
    Response.Write(ex.Message & ControlChars.NewLine & ex.InnerException.ToString & ControlChars.NewLine)
    Exit Function
    End Try
    Session("oReportDocument") = FechReport
    'FechReport.Close()
    'FechReport.Dispose()
    'GC.Collect()
    Return blNoErrors
    End Function
    End Class

    I have looked into Caching the report document as well. However, as you mentioned in the post it, it will only be usefull when the DB and the report parameters remain the same which is not the case in our application. We have multiple identical databases and hundreds of reports. Our users have the option of using a combination of any database and any reports, each report having numerous parameters.
    Since one user can only access one report at a time. i do have cleanup code that removes the session variable used to store the reportdocument object in the page that is initially used to call the ShowReport.aspx page.
    I understand now that the CR.net SDK is only good for light reporting only. Unfortunately when we started development based on all of the articles that I gathered, I didn't anticipate running to issues like this. But I guess that's the nature of the business :-).  And hence there are people like you who go out of the way to answer these difficult questions.
    Regards,

  • I'm using acrobat pro in my project after debuging the project and after opening a certain number of PDF files I receive the message: the maximum number of files opened has been reached, you have to close some files to continu.even doing that, I steel rec

    I'm using acrobat pro in my project after debuging the project and after opening a certain number of PDF files I receive the message: the maximum number of files opened has been reached, you have to close some files to continu.even doing that, I steel receive the same message.Some one can tel what to do please? Thanks

    Hi Memalyn
    Essentially, the bare issue is that you have a 500GB hard drive with only 10GB free. That is not sufficient to run the system properly. The two options you have are to move/remove files to another location, or to install a larger hard drive (eg 2TB). Drive space has nothing to do with SMC firmware, and usually large media files are to blame.
    My first recommendation is this: download and run the free OmniDiskSweeper. This will identify the exact size of all your folders - you can drill down into the subfolders and figure out where your largest culprits are. For example, you might find that your Pictures folder contains both an iPhoto Library and copies that you've brought in from a camera but are outside the iPhoto Library structure. Or perhaps you have a lot of purchased video content in iTunes.
    If you find files that you KNOW you do not need, you can delete them. Don't delete them just because you have a backup, since if the backup fails, you will lose all your copies.
    Don't worry about "cleaners" for now - they don't save much space and can actually cause problems. Deal with the large file situation first and see how you get on.
    Let us know what you find out, and if you manage to get your space back.
    Matt

  • Maximum Number of Items has been reached in FI

    Hi All
    We are working on MySAP ERP 2005.
    We received the following error massage:
    [Maximum number of items has been reached] we then updated table TTPYV using MATNR,MEINS,MENGE,PAOBJNR,POSN2,VBEL2,WERKS,ZEKKN 
    We had these same settings in R/3 4.7 and it worked very well.
    1. What are MySAP ERP 2005 requirements in order to get SD billing items summarized in FI? our client wants one invoice with more than 10000 items
    2. What are other IMG settings required in both FI/SD modules to get this working?
    3. Are there any User Exits required?
    4. Are there any CO settings required?
    5. Are there any G/L account settings required?
    Please assist
    Regards,
    Mutali

    I don't think you can. We had the same problem and had a good look at sap notes and posts from SDN etc. and came to the conclusion that you can only invoice up to 9999 items. Not entirely sure about that number, might be 999 items. In any case we decided to break down the billing list by creating more than one billing documents.
    You can do the same and then create an Invoice list, which is a document that will contain the values of all individual billing documents without posting any values to FI/CO

  • TS3988 ough my ipad used it says te maximum number of accounts has been reached .i do not no the preavous owners acconts help

    i bought my ipad udes it says the maximum number of free accountd has been reached i dont no the preavious owners account help

    All you can do is create an account to use on another iOS device of Mac running OS X 10.7.2 or higher, if you have one.  If you don't, perhaps a friend with one would do this for you.  Or, as a long shot, you could try going to the genius bar at a nearby Apple store to see if they would allow you to do this on one of their devices.

  • CS3 master collection "maximum number of activations allowed...has been reached", previously installed on 2006 imac that has been disposed by managment, so no way to deactivate, any help?

    CS3 master collection "maximum number of activations allowed...has been reached", previously installed on 2006 imac that has been disposed by managment, so no way to deactivate, any help?
    my enduser id is 20037502 contract number 4400044113 invoice number 15267602

    Serial number and activation support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • The process could not be created because the maximum number of asynchronous responses (5) has already been reached, and it will be dropped.

    Hi
    he process could not be created because the maximum number of asynchronous responses (5) has already been reached, and it will be dropped.
    Command executed:    "C:\WINDOWS\system32\WindowsPowerShell\v1.0\powershell.exe" -command "&G:\SCOM\SCOMModule\Notification\SMS.ps1 -scomalertid:'{c5a013e7-5408-468a-9b04-febab33cc56d}' -alertname:'Common Primary Database TableSpace
    Threshold Alert' -alertdesc:'TableSpace TEMP FreeSizePercent:0.4375\n' -alertstate:'Closed' -alerttime:'7/26/2014 1:55:19 PM' -Priority:'1' -Severity:'2'"
    Working Directory:    g:\SCOM\SCOMModule\Notification
    One or more workflows were affected by this.  
    Workflow name: Subscription852fbf70_40eb_450c_874d_46b631ca1352
    Instance name: Alert Notification Subscription Server
    Instance ID: {E07E3FAB-53BC-BC14-1634-5A6E949F9230}
    Management group:******
    Please help me
    Thanks

    Hi,
    the RMS is "Root Management Server". When you install first management server it becomes RMS. The RMS is relevant in SCOM 2007x management group. You can identify which server is RMS in administration console under management server view. Look for instance
    with "yes" value in "Is RMS" column.
    If you have SCOM 2012x version management group create sugested registry entrys on all management servers (MS) which executes command channel.
    This will surely solve your
    problem.
    Regards,
    Ivan

  • The maximum number of connections per source ('20') for this connector has been reached by this source IP address

    Receive connector 'Connector Name' rejected an incoming connection from IP address "IP of our load balancer". The maximum number of connections per source ('20') for this connector has been reached by this source IP address.
    I understand that I can up the limit - however, I'm wondering if there is a way to up the limit for ONE specific IP (our load balancer)
    TAG

    It does not look like you can up the limit for a specific IP but you might be able to create a separate receive connector for that IP address (and then change the limit).
    That is just a thought. Others may have more input on why you may or may not want to do that in practice.
    What SMTP traffic would not be coming from the load balancer?
    Is the objective to *not* allow some other (possibly malicious) source from creating excessive connections to the server?
    Otherwise, this is a good discussion about the different parameters that must be considered if you do decide to adjust the values (changing one may not suffice):
    http://letsexchange.blogspot.com/2012/04/receive-connector-rejected-incoming.html
    Nuno Mota's blog (MVP)
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.

  • Operation Start failed on step Allocate elastic IPs with message: Error creating static IPs; AMAZON: The maximum number of addresses has been reached.

    Hi All,
    I was trying to create Instance for SAP Application Server ABAP 7.4 SP5 incl. Business Warehouse on SAP HANA 1.0 SP7 [Developer Edition] in SAP HANA Enterprise Cloud / Cloud Appliance Library when I got this message 'Operation Start failed on step Allocate elastic IPs with message: Error creating static IPs; AMASON: The maximum number of addresses has been reached'.
    I tried looking for an answer or solution for this issue but no success.
    Can anyone please help me with this?
    Regards,
    Deep Tanwar

    Hi Deep,
    you need to check your Elastic IP limits within the AWS console and how to release them if they are used:
    Elastic IP Addresses (EIP) - Amazon Elastic Compute Cloud
    AWS Service Limits - Amazon Web Services
    Regards,
      Hannes

  • "Message number: FI311: Any commitment item has been entried in the positio

    Hello,
    when I try to post a customer invoice with fb70 tx , and I have created a derivation rule : cost center-->fund center, and also the G/L account that I am using in the posting has a commmitment item assigned , but the system shows the next error:
    "Message number: FI311: Any commitment item has been entried in the position 00001 1000(Cocd)
    6001000200(G/L account).
    But in the tx Fb01, the system  run correctly and make the derivation
    Which is the problem , some note to implement ?
    Best Regards
    Olga

    Hi,
    When you post a document, all lines have to receive FM assignment. I believe, you are receiving this message on the line of the customer. Go to FMDERIVE, activate a trace and you will see if you have rules missing to derive FM object.
    Regards,
    Eli

  • Maximum number of developer application on my phone reached

    Hi , i am developing an app in c# for windows phone , i run my code in my phone , after two app that i run in my phone , it shows me error :
     Unable to install application. The maximum number of developer applications on this phone has been reached. Please uninstall a developer application and try again.
    how can i uninstall a developer app in my phone ??
    tnx

    Hi,you can uninstall
    a developer or any app from your phone do following steps,
    1)Go In the App
    list, tap and hold an app or game, then  you tap Uninstall.
    2)When asked for confirmation,tap
    Yes,to uninstall app.
    Don't
    forget to mark the right answer and vote up if helps you.
     

  • I didn't deactivate Adobe CS 3 Premium before I reinstalled it on the same computer,  so when I tried to activate it says the maximum has been reached for licenses. I read on your website the instructions for correcting this issue, but still do not have t

    I didn't deactivate Adobe CS 3 Premium before I re-installed it on the same computer,
    so when I tried to activate, it says the maximum number has been reached for licenses.
    I read on your website the instructions for correcting this issue, but still do not have the deactivation option. So that I can reactivate it.
    Could you please help?

    COntact support by web chat or phone and have them reset activations.
    Mylenium

  • The maximum report processing jobs limit configured by your system has been reached.

    Hi,
    We are using Crystal report in ASP.NET (Microsoft .NET 3.5) environment for a number of years but everything went quite well.
    But recently, we have migrated to .NET 4.5 ,and started having this error.
    "The maximum report processing jobs limit configured by your system has been reached."
    As per internet search, some recommended to use the Object.dispose() approach. We have applied recently ,and it is still NOT working
    Our JobLimit in the registry on production server is 75.
    This is report display
    This is report dispose
    Seeks your technical expertise here  thanks in advance.

    See if this Article will help:
    Crystal Reports Maximum Report Processing Jobs Limit
    BTW.; do not set the JobLimit key in the registry to -1 (that is for CRS OEM edition only).
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • When entering my phone serial number it shows "We're sorry, but this is a serial number for a product that has been replaced. Please check your information and re-enter your serial number. If your information is correct, you may need to contact us."

    Hi,
    I had purchased an iPhone 5 last month and got the OS updated to iOS 7, yesterday.
    The data cable was of very bad quality and when I took it to the retailer for replacement, they said that its not covered under the one year warranty.
    Secondly, I have also been experiencing network coverage issues with this phone. So, I decided to contact apple care through the web. When entering my serial number/IMEI it says, "We're sorry, but this is a serial number for a product that has been replaced. Please check your information and re-enter your serial number. If your information is correct, you may need to contact us."
    Does anybody have any idea what the reason behind this could be.
    - First time with iPhone and frustrated.
    Briju

    If you purchased the iPhone from Apple or an authorized Apple reseller,
    contact them for assistance. If you purchased elsewhere, go back
    to that retailer and get them to give you a new iPhone or your money
    back.
    If you have checked the serial number carefully and re-entered it
    and that gave you the same error message, contact Apple if purchased
    from Apple or authorized retailer; otherwise you have been scammed
    and need to pursue the matter with the business you obtained the
    iPhone from.

Maybe you are looking for