Hi!
I am new to java and DFC development.
We have developed a custom code that is ideally executed after the checkin process is completed. We use the below if statement to trigger the custom code:
if (strAction.equalsIgnoreCase("checkin"))
{ //custom code here
}
unfortunately, the code is executed when the checkin process is initiated. This results in the custom code using the old r_object_id instead of the new r_object_id of the checked in document . What's the best way to ensure that the checkin process is completed before the custom code is executed?
Thanks!