Changing the reference of the object?

public class A {
  public static void change(X a, X b) {
    a = b;
    System.out.println("a:" + a + " b:" + b);
  public static void main(String[] args) {
    X a = new X(1);
    X b = new X(2);
    change(a,b);
    System.out.println("a:" + a + " b:" + b);
public class X {
  int k = 1;
  public X(int kk){
    k = kk;
  public String toString(){
    return k + "";
}Why is the output
a:2 b:2
a:1 b:2
not
a:2 b:2
a:2 b:2
Edited by: yeeen on Oct 5, 2009 12:22 PM

Here's another example:
public static void main(String[] args) {
    String[] s = {"foo", "bar"};
    changeReference(s);
    System.out.println(Arrays.toString(s)); // Still prints foo, bar. Reference is not changed.
    changeValue(s);
    System.out.println(Arrays.toString(s)); // Prints foo, foo. Value is changed.
public static void changeReference(String[] s) {
    s = new String[] {"bar", "bar"};
public static void changeValue(String[] s) {
    s[1] = "foo";
}

Similar Messages

  • Windows Azure Active Directory MA - Maximum number of items that can be serialized or deserialized in an object graph is '500000'. Change the object graph or increase the MaxItemsInObjectGraph quota.

    Trying to use WAAD with FIM 2010 R2 SP1 (4.1.3496.0) and during export several objects cause a warning/info with:
    Maximum number of items that can be serialized or deserialized in an object graph is '500000'. Change the object graph or increase the MaxItemsInObjectGraph quota.
    I looked, this appears hard coded into the MA, anyone know what causes this? My best guess is something like a large group membership? Does anyone know what the limits around the WAAD MA are?
    Here is the indepth error logged during the failure:
    ProvisioningServiceAdapter::ExecuteWithRetry: Action: Export, Attempt: 0, Exception: Microsoft.Online.Coexistence.ProvisionRetryException: Unable to communicate with the Windows Azure Active Directory service. Tracking ID: e94e6020-8434-4aa7-9a29-b2edf7fe6b2e
    See the event log for more details. ---> System.ServiceModel.CommunicationException: There was an error while trying to serialize parameter http://schemas.microsoft.com/online/aws/change/2010/01:syncObjects. The InnerException message was 'Maximum number
    of items that can be serialized or deserialized in an object graph is '500000'. Change the object graph or increase the MaxItemsInObjectGraph quota. '.  Please see InnerException for more details. ---> System.Runtime.Serialization.SerializationException:
    Maximum number of items that can be serialized or deserialized in an object graph is '500000'. Change the object graph or increase the MaxItemsInObjectGraph quota.
       at System.Runtime.Serialization.XmlObjectSerializerContext.IncrementItemCount(Int32 count)
       at WriteArrayOfstringToXml(XmlWriterDelegator , Object , XmlObjectSerializerWriteContext , CollectionDataContract )
       at System.Runtime.Serialization.CollectionDataContract.WriteXmlValue(XmlWriterDelegator xmlWriter, Object obj, XmlObjectSerializerWriteContext context)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeAndVerifyType(DataContract dataContract, XmlWriterDelegator xmlWriter, Object obj, Boolean verifyKnownType, RuntimeTypeHandle declaredTypeHandle, Type declaredType)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeWithXsiType(XmlWriterDelegator xmlWriter, Object obj, RuntimeTypeHandle objectTypeHandle, Type objectType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle, Type
    declaredType)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.InternalSerialize(XmlWriterDelegator xmlWriter, Object obj, Boolean isDeclaredType, Boolean writeXsiType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.InternalSerializeReference(XmlWriterDelegator xmlWriter, Object obj, Boolean isDeclaredType, Boolean writeXsiType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle)
       at WriteSyncObjectGroupToXml(XmlWriterDelegator , Object , XmlObjectSerializerWriteContext , ClassDataContract )
       at System.Runtime.Serialization.ClassDataContract.WriteXmlValue(XmlWriterDelegator xmlWriter, Object obj, XmlObjectSerializerWriteContext context)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeAndVerifyType(DataContract dataContract, XmlWriterDelegator xmlWriter, Object obj, Boolean verifyKnownType, RuntimeTypeHandle declaredTypeHandle, Type declaredType)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeWithXsiType(XmlWriterDelegator xmlWriter, Object obj, RuntimeTypeHandle objectTypeHandle, Type objectType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle, Type
    declaredType)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.InternalSerialize(XmlWriterDelegator xmlWriter, Object obj, Boolean isDeclaredType, Boolean writeXsiType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.InternalSerializeReference(XmlWriterDelegator xmlWriter, Object obj, Boolean isDeclaredType, Boolean writeXsiType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle)
       at WriteArrayOfSyncObjectToXml(XmlWriterDelegator , Object , XmlObjectSerializerWriteContext , CollectionDataContract )
       at System.Runtime.Serialization.CollectionDataContract.WriteXmlValue(XmlWriterDelegator xmlWriter, Object obj, XmlObjectSerializerWriteContext context)
       at System.Runtime.Serialization.DataContractSerializer.InternalWriteObjectContent(XmlWriterDelegator writer, Object graph, DataContractResolver dataContractResolver)
       at System.Runtime.Serialization.DataContractSerializer.InternalWriteObject(XmlWriterDelegator writer, Object graph, DataContractResolver dataContractResolver)
       at System.Runtime.Serialization.XmlObjectSerializer.WriteObjectHandleExceptions(XmlWriterDelegator writer, Object graph, DataContractResolver dataContractResolver)
       at System.ServiceModel.Dispatcher.DataContractSerializerOperationFormatter.SerializeParameterPart(XmlDictionaryWriter writer, PartInfo part, Object graph)
       --- End of inner exception stack trace ---
    Server stack trace:
       at System.ServiceModel.Dispatcher.DataContractSerializerOperationFormatter.SerializeParameterPart(XmlDictionaryWriter writer, PartInfo part, Object graph)
       at System.ServiceModel.Dispatcher.DataContractSerializerOperationFormatter.SerializeParameter(XmlDictionaryWriter writer, PartInfo part, Object graph)
       at System.ServiceModel.Dispatcher.DataContractSerializerOperationFormatter.SerializeParameters(XmlDictionaryWriter writer, PartInfo[] parts, Object[] parameters)
       at System.ServiceModel.Dispatcher.DataContractSerializerOperationFormatter.SerializeBody(XmlDictionaryWriter writer, MessageVersion version, String action, MessageDescription messageDescription, Object returnValue, Object[] parameters, Boolean
    isRequest)
       at System.ServiceModel.Dispatcher.OperationFormatter.OperationFormatterMessage.OperationFormatterBodyWriter.OnWriteBodyContents(XmlDictionaryWriter writer)
       at System.ServiceModel.Channels.Message.OnWriteMessage(XmlDictionaryWriter writer)
       at System.ServiceModel.Channels.BufferedMessageWriter.WriteMessage(Message message, BufferManager bufferManager, Int32 initialOffset, Int32 maxSizeQuota)
       at System.ServiceModel.Channels.BinaryMessageEncoderFactory.BinaryMessageEncoder.WriteMessage(Message message, Int32 maxMessageSize, BufferManager bufferManager, Int32 messageOffset)
       at System.ServiceModel.Channels.HttpOutput.SerializeBufferedMessage(Message message)
       at System.ServiceModel.Channels.HttpOutput.Send(TimeSpan timeout)
       at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.SendRequest(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.Online.Coexistence.Schema.IProvisioningWebService.Provision(SyncObject[] syncObjects)
       at Microsoft.Online.Coexistence.ProvisionHelper.InvokeAwsAPI[T](Func`1 awsOperation, String opsLabel)
       --- End of inner exception stack trace ---
       at Microsoft.Online.Coexistence.ProvisionHelper.CommunicationExceptionHandler(CommunicationException ex)
       at Microsoft.Online.Coexistence.ProvisionHelper.InvokeAwsAPI[T](Func`1 awsOperation, String opsLabel)
       at Microsoft.Azure.ActiveDirectory.Connector.ProvisioningServiceAdapter.<>c__DisplayClass1.<Export>b__0()
       at Microsoft.Azure.ActiveDirectory.Connector.ProvisioningServiceAdapter.ExecuteWithRetry(String actionName, Action action).

    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 am not able to change the object after upgrade(SPAU Activity).

    HI All,
    I am not able to change the object after upgrade(SPAU Activity). Please any one can tell what is the reason with below details.
    You are not authorized to make changes
    Message no. 37202
    Diagnosis
    You have no authorization for the authorization object 'S_DEVELOP', which would allow you to change the screen concerned.
    There is also a second possibility:
    You want to edit a modified SAP screen in a customer system after an upgrate (SAP transport). The screen remains locked for editing until the new SAP version and the customer version have been aligned (Transaction SPAU).
    System Response
    Authorizations are assigned to users in profiles. Profiles are stored in the user master record.
    Procedure
    Comsult your system administrator.
    Thanks in Advance,
    Mahesh Devershetty

    Hi,
    Does the user who would like to change the screen have the authorisation
    for S_DEVELOP in his profile? Please run transaction /NSU53 after the
    failed authorisation. You will get an information which authorisation
    is missing.
    Additional please check if you have open entries in transaction SPAU for
    that object.
    If you couldn´t solve the issue I need an user to analyse it in your
    development system.
    That user needs all authorisation for development and has to be
    registrated as developer.
    The system uses the authorization object S_DEVELOP for Workbench objects
    can you please check your user master record whether it contains the
    required autorization or not.
    Please also ensure that modification adjustment is turned on as per note:
    197600  Switching the Modification Assistant off and on
    Aidan

  • Tcode to change the object package

    hi,
    what is the transaction code to change the object package

    hi
    good
    Try this.
           1.      Select the required development object from the object list.
           2.      Choose Other Functions àChange Package Assignment from the context menu.
    The Reassign Object dialog box appears.
           3.      Enter the name of the new package in the New Package field.
           4.      Choose Continue to confirm your entries.
    If the object has not already been assigned to a change request, you must enter a change request as well.
           5.      Enter a valid change request and choose Continue.
    thanks
    mrutyun^

  • How and when does oracle changes the object status on a view?

    I have HR schema and AWARD schema. AWARD schema has views referencing the base tables in HR. Whenever I refresh HR the dependant views on AWARD becomes invalid. I recompile those views after the refresh.
    Could anyone explain the internals of this object status change process? How does my AWARD schema sense the invalid status? Why it is not re-establishing the status after the data import?

    I refresh HR test instance from production. If you are not so sure about this process...here is what happens ....export production HR schema, drop all the objects from HR test and import the production data into HR test.
    I am not worried about what is happening but would like to understand the internal process (beyond the basics).

  • Transport landscape problem (cannot change the object)

    Hi All,
    I have problem to change my object in the integration repository.
    Initially, i only have 1 XI server (dev and prod), until certain level that i have to add additional server for development. So i just install new xi in new box (fresh). and export the repository object form production and import into this new box.
    But the problem is i can't change all the object. is that any workaround to change the configuration so i can use my nex box become development and later on transport back all the changes to original production box.
    Appreciate if you can give me some advise.
    Thank you and Best Regards
    Fernand

    Hi,
    If you need to change anything in repository
    you need to click on the software component in IR
    and at the bottom of the screen you will find two checks
    that will allow (or not) you to change objects
    if you want to change anything in communication channel
    you just need to go to change mode
    you can change anything in ID
    Thanks
    Swarup

  • Regenerate the Object Reference in workflow

    Hi All
    Is it possible to regenerate the object reference in workflow BOR.
    Please clarify below my query.
    I am using custom workflow at initial stage i am sending dialog work item one user to another user, Once user opens his work item i want to change the object reference.
    Is these any function module available please let me know.
    Thanks & Regards
    K.Gunasekar.

    Did it via the Call transaction and BDC in the object method code and working perfectly fine.
    Regards,
    Archana

  • Oracle JDBC driver and the object types cache

    Hi there,
    Oracle JDBC Developer's Guide and Reference says (version 11gR1):
    Oracle JDBC drivers cache array and structure descriptors. This provides enormous performance benefits. However, it means that if you change the underlying type definition of a structure type in the database, the cached descriptor for that structure type will become stale and your application will receive a SQLException exception.http://download.oracle.com/docs/cd/B28359_01/java.111/b31224/oraoot.htm#g1104293
    That is the problem we are having here... We have web services deployed to WebLogic server that use custom object types. Every time we have to change an object type definition the web services stop working (the error ORA-00902: invalid datatype is raised) and the only solution is to restart the JDBC data source which is quite disruptive to the development process.
    Is there a workaround to disable that "feature"?
    Thanks
    Luis

    Luis Cabral wrote:
    jschell wrote:
    Although if you are changing the object structure then the code to deal with it must change as well. So, especially in developement, why is restarting a problem?It is not that restarting per se is a problem. Here us developers do not have the required privileges to restart the JDBC pool and we have to ask the DBA to do it, and sometimes he is not immediately available. It is not a big thing but this can impact the development process.Your development process is hideously flawed then.
    The pool exists in the JEE server. And from your first post it seems that you have permission to restart that but not to access the management console. It is ridiculous to have access the the former and not the later.
    Not to mention that you should have your own JEE instance to develop on. Actually it is weird to me that a DBA would even be touching a JEE server. The competent ones I know don't even know how to do that. They know the database not the application servers.
    >
    In addition, having to restart a whole JDBC pool just because you changed a database object definition does not seem very flexible to me. Such issue does not exist in other connection types, for instance in OCI connections, that is why I thought there should be an option to turn it off if required.
    Well specifically you have to restart the pool because you were USING the object that changed.
    And I am rather certain that you can turn off the pool entirely.
    Even in production, I reckon that this may have a negative impact. For instance, say that you need to deploy a hot fix for a bug in one application that involves the re-creation of one single object type. This means that the whole JDBC pool, which may be used by other applications, may have to be shut down just because of that single object.Good point.
    I suggest you stop using complex objects in Oracle. I suspect that would eliminate the problem completely.

  • Problem in tagging the object to Transport Request

    Hello Experts,
    I have installed 0FISCVARNT using BI Content, but when i try to change the package of the standard object and save it under TR, it is not allowing me to change the package from local class.
    Please provide me any suggestions, if you have any.
    Thanks
    PT

    Hi PT,
    What are all the steps you have tried I am not aware of, but you can try following options.
    1) Goto SE03 transaction, on the left hand side tree you have the option "Change object directory entry". Select that option put eh object type as R3TR IOBJ and your info object name. Just execute and you should be able to change the package from local to any other transportable package.
    2) Go to RSD1 and give info object name, goto change option and I am not remembering in the EDIT or menu beside EDIT you will have the option to change the  "Object Directory Entry", there also you can change package from local to transportable package.
    Regards,
    Durgesh.

  • Can you change the color of menu buttons dynamically?

    Post Author: DanH
    CA Forum: Xcelsius and Live Office
    Hello, Newbie Here,
    Built my first Xcelsious front end and linked to two personnel databases.  Everything works just fine.  The outputs on this particular visualization generate completion statistics for 12 divisions and a 13th for combined.  Don't know enough about the software yet to know whether I can make the menu buttons appear in red for those that have not accomplished a 100% compliance to the task being tracked?  This would make it visually easier for upper management to click directly on the division menu buttons in red, rather than have to click on all of them to see which divisions haven't achieved completion.  Also, wouldn't hurt to be able to turn the other menu buttons green for those that have completed.  Any ideas are appreciated, really scratching my head at the moment.
    Thanx,
    Dan

    Post Author: amr_foci
    CA Forum: Xcelsius and Live Office
    i dont think you can change the objects' color on runtime for the crytsal xcelsius

  • How can we change the description and name of Process Chain in Production

    Guys,
    Can anyone please help me to understand how can we change the name and description of the process chains in Production in SAP BI?
    Regards

    open the process chain and go to edit mode and then press Ctrl+F6 for a rename... you can only rename the description and not the technical name.
    If you want to edit PC in production - esp one which has been transported - go to transport connection and change the object changeability for the same to everything changeable ( right click on the same to get this option )

  • Hiding the objects in IDT - Reports not working

    Hi All,
    I have created some Webi reports.Now when i go back and change the Objects state as 'Hidden' in IDT (Information Design Tool), then exported the universe to Repository.i am using SAP BO 4.1 tools.
    Now come back open those reports.It didn't open at all and throws me error message 'Unresolved objects.See your Business objects administrator'..
    So please help me how to fix this issue by keeping those objects as hidden.
    Thanks,
    Regards,
    Nanda Kishore.

    Hi Ravi,
    Thank you very much for your quick response.
    But my requirement is that the hidden objects should not be removed from the report.
    Those objects should be present in Webi report but should not be visible to users.
    One more thing where to see that AUTO_UPDATE_QUERY parameter in Business layer and Data Foundation layer.
    Thanks,
    Nanda Kishore.

  • Changing the layer colour in Isolation Mode

    How do I change the layer colour once I'm in Isolation Mode? I'm using CS4 and tring to edit a yellow object but Illustrator has made the layer/paths/edges yellow making it VERY difficult to see what I'm doing?
    ...actually, I just changed the objects layer to a differrent colour which seems to have made Illustator select the next colour down when in Isolation made.
    Is this my only option?

    I decided to test this more thoroughly.
    Elements edited in Isolation Mode do actually inherit the color of the parent layer.
    But there seems to be an exception: symbols. No matter what color the layer is, symbols edited in Isolation Mode get their own color. And that color is persistent across all symbols, regardless of the layer that they appear on.
    However, that color is not consistent throughout the lifespan of the document. The color changes according to a pattern.
    And the pattern is this: there is a sequential list of layer colors in AI, and a correlation  between the number of layers in your document and the sequential number of the colors in the Layer Options color list. Symbols always use the color that is next in the list of layer colors, following the pre-assigned color of the most recently-created layer.
    Test this out if you want:
    Create a new document. Note that the default layer always uses the "light blue" layer color.
    Now create a second layer in that document. It will be red.
    The third layer will be green, and the fourth will be blue.
    Now make a symbol and edit it in Isolation Mode. It's yellow.
    Now look at the sequence of colors in the layer color dropdown menu: "yellow" is fifth in the list, after "blue," the fourth color in the list. It seems like AI is creating a new temporary layer for editing symbols, and like other layers, it is automatically assigned a color.
    So basically, symbols edited in Isolation Mode will only be yellow if you have four layers. The way that AI assigns colors to symbols being edited in  Isolation Mode seems to depend on the number of layers in the document.
    If you followed the steps above, you can test this out by creating a fifth layer. Notice that it automatically gets assigned a layer color of yellow. Edited symbols will be magenta... the sixth color in the list.
    It doesn't matter if you change the colors of each layer after creating  them; as far as I can tell, if you have four layers, symbols edited in Isolation Mode will always be yellow.
    The workaround would be to add a fifth layer to your document. Symbols in Isolation Mode will then show up in magenta, which is much easier to see on a white background.

  • Regenerating the object after Transport

    Hi,
    We are seeing a issue which we had not seen earlier.
    If there is any user exit  changed, the object is not getting activated unless we regenerate the object in the target environment.
    Basically Include programs are not activated in the target system after we import the transport request. know
    Every time after import we are manually regenerating the object in the target environment.
    Regards,
    Kumar

    Hello Kumar,
    You need to check transport logs to see how is the transport imported i.e with errors or warnings. In case any error or warning transport log showing then resolve those in source system and create new transport request.
    Thanks,
    Augustin.

  • There is no access key when I change the SRM configuration

    Dear ,Expert :
    I want to change the SRM Configuration .I do that as follows :
    1,se80 --edit object --web object --component configration
      2,I enter :/SAPSRM/WDCC_DODC_RFQ_H_BD_PUR and click the "start configurator "button
    3,change the object in IE
      then get the error message :There is no developer license and/or modification license registered for object R3TR WDCC/SAPSRM/WDCC_DODC_RFQ_H_BD_PUR 00 in this system for user*****
    you can get the screenshot in my attachment
    I get the access key from  SAP market But there is no place for entering the key .
    Bestregards
    Alex

    Hi Alex,
    Can you please share the solution?
    I am facing the same issue...
    Thanks,
    Anubhav

  • System settings does not allow changes to be made to object

    Hi,
              In one of my test system, when i tried to change the object  its displaying following error message.
    System settings does not allow changes to made to the object.
    I have checked the settings in se03, regarding modification objects of software components and namespace those are in state of modifiable for this namespace object.
      I would like to know, how to change the object in the namespace.
    Regards
    Srikanth

    Hi,
    In SE06, in addtion to system status and component status, check the namespace status too.
    It would be better if you know the namespace of the object you are trying to modify. Set it to modifiable and retry.
    To find namespace, open the object in SE80 and check the attributes. It would show assigned package, namespace, component etc.
    Regards,
    Srikishan

Maybe you are looking for

  • US iPhone in the UK - Post 09NOV

    Will the iPhone purchased in the US work in the UK if the SIM card is changed to an O2 one? I looked over the Uk site and the O2 service provider but didn't see anything to answer this. Thanks.

  • Premiere Elements 11 will not open after required restart following the installation

    An Adobe support tech assisted me with the installation of Photoshop Elements 11 & Premiere Elements 11 using live chat.  Before disconnecting live chat, the tech reminded me to restart my computer before using these two programs.  I restarted the co

  • Iphone 4s screen is blurry

    Got my my iphone 4s back in March 2012, a few times in the past few months some of the text and apps have become blurry, but it goes away within the day. It is especially noticable in the phone app on the numbers, the message/phone/itunes, app store

  • Value Blank/space is invalid for account assignment element fund

    Hello! I created an invoice with several items linked to funds reservation. when the invoice has 2 line items, the payment run is executed without problem. when the invoice has more than 3 line items, the payment run is executed with error. The messa

  • Commitment item does not update during PO change

    hello All, when we change PO " GL account " the old commitment item remains without changes. your help is appreciated, I.Gad