1188
Points
Questions
2
Answers
165
-
- 988 views
- 1 answers
- 0 votes
-
- 855 views
- 1 answers
- 0 votes
-
Hello
Please check item_history table. This table holds all history for “non-routable” objects. So, User would also be here
Join agileuser.id to item_history.item and class = 11605. That should give you the details you see in UI History tab
Thanks
Raj
This answer accepted by Ebubercel. on January 25, 2023 Earned 15 points.
- 624 views
- 2 answers
- 0 votes
-
- 632 views
- 1 answers
- 0 votes
-
Hello
Yes, Agie does provide a set of web services to access data
Here is the link for the documentation
https://docs.oracle.com/cd/E91823_62/otn/pdf/integration/agabd.pdf
If you use Java, they also support SDK
Hope this helps
– Raj
- 1346 views
- 1 answers
- 0 votes
-
Hello
Agile modules uses JMS heavily for various asynchronous operations
Some of them include
– Notifications. All notifications that need to be sent to users are queued up and one of the modules process them
– Synching across nodes in the cluster
– For example, if you do an admin change in one node, it publishes the changes to the queue and other nodes will pick it up and update
– Updates to objects
– ACS transactions
Hope this helps
– Raj
- 702 views
- 1 answers
- 0 votes
-
- 831 views
- 2 answers
- 0 votes
-
- 908 views
- 1 answers
- 0 votes
-
Hello
Try this query
select c.”ID”,c.”CLASS”,c.”SUBCLASS”,c.”CHANGE_NUMBER”,c.”CATEGORY”, c.”STATUS”,c.”REASON_CODE”,c.”ORIGINATOR”,c.”OWNER”,
c.”CREATE_DATE”,c.”RELEASE_DATE”,c.”DESCRIPTION”,c.”REASON”,c.”MODIFYDATE”,c.”OBJVERSION”,c.”DELETE_FLAG”,c.”SUBMIT_DATE”,c.”ROUTE_DATE”,c.”PRODUCT_LINES”,c.”FLAGS”,c.”WORKFLOW_ID”,c.”STATUSTYPE”,c.”FINALCOMPLETE_DATE”,c.”PROCESS_ID”,c.”IN_REVIEW”,s.signoff_status, s.user_assigned, s.user_name_assigned, ch.timestamp, 0, null, null, trunc(sysdate – route_date)
from agile.signoff s join change c on c.process_id=s.process_id join agile.change_history ch on ch.id=s.history_id left outer join agile.agileuser a on s.user_assigned = a.id
left outer join agile.agileuser cm on c.owner = cm.id
where c.statustype = 2 and s.signoff_status = 0– Raj
- 728 views
- 1 answers
- 0 votes
-
- 812 views
- 1 answers
- 0 votes