2780
Points
Questions
7
Answers
147
-
- 2732 views
- 2 answers
- 0 votes
-
Sorry I though the opposite.
If you call addChild, you are not pointing on the just added element but on the list itself. So the setObsolete is called on the list itself in your code (and therefore doesn’t work)
For that it is quite easy. When you call list.addChild(“Neptune”) the API returns the just added value (an IAgileList …). So you have to call setObsolete on this new one and not on the original list.Example:
IAgileList neptune = (IAgileList) listchildren.addChild(“Neptune”)
neptune.setObsolete(true);If any question you can check the sdk docs where this is explained quite well:
https://docs.oracle.com/cd/E17287_04/otn/pdf/integration/E17315_01.pdf- 2137 views
- 5 answers
- 1 votes
-
- 2137 views
- 5 answers
- 1 votes
-
For whom is interested on that topic, I received an answer from Oracle, saying that this cannot be done in 9.3..4,5, and 6 version.
There is an enhancement request created on November but it is still under review:So probably it is not possible to set HTML as Default Value for Large Text using official ways 🙂
This answer accepted by Antonio. on November 21, 2024 Earned 15 points.
- 2346 views
- 1 answers
- 0 votes
-
The sort order can be modified by the Personalize view. In the first tab of the displayed dialog when you click Personalize, there is the sort criteria (till 3 fields configurable).
Once applied, you can save as the base view to something new but you cannot override the Base View.
Once saved this personalized view as global, all users can select it by default for all Items. It is not possible to assign automatically to all users but each of them has to select it as default.This answer accepted by Lightning. on November 21, 2024 Earned 15 points.
- 2115 views
- 2 answers
- 0 votes
-
- 1672 views
- 1 answers
- 0 votes
-
- 3708 views
- 9 answers
- 0 votes
-
As mentioned by Steve, the Invalid Parameter error could be related to the set of a Role.
Try to set the list with an array of IRole objects instead of StringsINode nodeRoles = (INode)m_session.getAdminInstance().getNode(NodeConstants.NODE_ROLES);
IRole role1 = (IRole)nodeRoles.getChildNode(“PPM Task Owner”);- 3756 views
- 2 answers
- 0 votes
-
- 2991 views
- 4 answers
- 1 votes
-
Hi,
This warning has been added since JAVA 8.
http://www.oracle.com/technetwork/java/javase/8-compatibility-guide-2156366.htmlArea: HotSpot / gc
- Synopsis
-
The command line flags
PermSize
andMaxPermSize
have been removed and are ignored. If used on the command line a warning will be emitted for each.Java HotSpot(TM) Server VM warning: ignoring option PermSize=32m; support was removed in 8.0
Java HotSpot(TM) Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
- Nature of Incompatibility
-
source
- RFE
This because the Perm Generation doesn’t exist anymore in Java 8.
So the warning is not related to your -Xmx=512M (Heap Size) param but to the param -MaxPermSize=512M, which is related to the PermSize
- 1858 views
- 1 answers
- 0 votes