Hi,
I have a "Reject" action in one activity of my CBP. I would like to get the submitter's name when the user clicks this button. I wonder how to get the name of this submitter.
Thanks!
Michelle
You can get the user this way. This returns the oid of the current user.
target.getSession().getCurrentUser().getOid()
Sorry, to get the name you would use:
target.getSession().getCurrentUser().getName()