Hi,
I am attempting to create a worklog in post function using a Jython script. The issue that I have come across is that to create a worklog, you need a worklog object and I cannot seem to figure out how to create a worklog object. I cannot import any of the classes need. I receive errors like "cannot import name worklog".
I am stuck as how to accomplish this (and there is incredibly limited documentation on Jython scripting). I can easily get the worklog manager with the component accessor:
wm = ComponentAccessor.getWorklogManager()
but to create the worklog, I already need a worklog object.
Worklog create(ApplicationUser user,
*Worklog* worklog,
Long newEstimate,
boolean dispatchEvent)
How do I do that?
Thanks for the help.