2780
Points
Questions
7
Answers
147
-
- 2379 views
- 3 answers
- 0 votes
-
Hi,
You cannot customize the error message returned when you click Audit Release button but you can add an additional check via Event PX during the change status to Release.
It will be an Event Subscriber PRE synchronous that execute your PX and blocks the change status, making the autopromotion fails, if your condition is not satisfied.Be aware, that your message will not be available in the audit status/release. So if you run the Audit Release and everything is ok, it doesn’t mean that your PX will not fail.
Regards
Antonio- 1701 views
- 1 answers
- 0 votes
-
Hi Swathi,
as already mentioned above by naresh, it is not possible by default because you are not duplicating a BOM but just replacing it. So if you check the item at that version, you will not find any duplication.
Using a custom PX you can check all redlines and avoid to change status (for example) if in the redlines (old and new items) there are two items with the same NumRegards
Antonio- 1487 views
- 4 answers
- 0 votes
-
Hi
This list is not an actual list (if you see its elements are empty) but it is a list defined in the Class configuration and not in the attribute itself.
So for this reason, you cannot customize the list as you wish and even if the attribute Display Type is editable, Agile prevents you to do that
As described in the Admin documentation:For list attributes whose selections are defined elsewhere, this property reads (List) and the property is not editable on the attribute setup window. For example, the Lifecycle Phase attribute selections are those that are defined on the Lifecycle Phases node.
This answer accepted by chlin2828. on November 22, 2024 Earned 15 points.
- 1517 views
- 3 answers
- 0 votes
-
Hi,
This is not really related to Oracle Agile PLM.
Which is the Content Type format that you are using to download the file? each browser, has the default File Type association configurable browser by browserFor Example:
Response.ContentType = "application/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; Response.AppendHeader("content-disposition", "attachment; filename=myfile.xlsx");
- 1576 views
- 3 answers
- 0 votes
-
Hi,
Looking at the error, there is:
The preferred file server : https://hostname:port/Filemgr/services/FileServer for current user is down.Did you hide the real name in order to post it? Otherwise the File Manager server selected in your admin user, is not configured i the Java Client. If you open the web client using the same user, you should have the same issue (it is not related only to SDK).
Try to change this preference or to configure the selected IFS server properly- 3047 views
- 7 answers
- 0 votes
-
Usually this happens when the Event that triggers your PX is a PRE Event.
When the change/item is being modified, if the PX tries to update one of them, this error is thrown.
Try configuring the Event px as POST event instead of PRE. In this way, the change and the item are not blocked by Agile modification and you should be able to customize them via SDK- 2681 views
- 3 answers
- 0 votes
-
- 2284 views
- 3 answers
- 0 votes
-
Hi Rajesh
The search si available also in 9.3.5 IF you have the right privileges assigned and your profile is set to view the Recycle Bin Search
http://docs.oracle.com/cd/E69230_08/otn/pdf/user/html_agaaj/output/appendix_c.htm
To view them, open your profile and go in General Info tab.
Here you can find the field Searches where you can edit it adding the Recycle Bin one- 4079 views
- 3 answers
- 0 votes
-
Hi,
If I understood correctly, you need to know where find a deleted file.
You can search in the Recycle Bin Saved Searche (top left of web client). once opened, you can Undelete it via Action menu.
Otherwise, via SDK, you can open your object as an normal oneIDataObject object = session.getObject(XXX.OBJECT_TYPE, “UNIQUENUMBER”);
object.undelete();in this way, the object will be undeleted anyway without search it manually
Please fill your questions with more details
- 4079 views
- 3 answers
- 0 votes