How can I save my data in the RTC server with my follow-up action?
Accepted answer
unless you have your own counter, there is no mechanism to insure sequential numbering. there are times when a sequence number is incremented but a workitem is not created.
A-1, A-2.. far as I know, the database access layer is not exposed for use for extension. I have wanted to add objects to the database as well.
so, as Ralph suggested, you would have to use your own JDBC connection (& configuration) to a different table (maybe in the same database)
also, I am not sure how you replace the Jazz created ID with your own, and still have hte rest of the system work.
reports, queries, ... all use the ID field in lots of indirect ways.
A-1, A-2.. far as I know, the database access layer is not exposed for use for extension. I have wanted to add objects to the database as well.
so, as Ralph suggested, you would have to use your own JDBC connection (& configuration) to a different table (maybe in the same database)
also, I am not sure how you replace the Jazz created ID with your own, and still have hte rest of the system work.
reports, queries, ... all use the ID field in lots of indirect ways.
Comments
2 other answers
http://rsjazz.wordpress.com/2012/07/31/rtc-update-parent-duration-estimation-and-effort-participant/ shows how you would do that with work items. You can use the JavaAPI to create and save other RTC objects. You can use Java and REST/OSLC API's to contact other Jazz/OSLC applications and create and store data.
For other kinds of data sources you have to use Java API's to do this.
For other kinds of data sources you have to use Java API's to do this.