What's the use of User's Electronic Signature Image
Hi,
In Windchill User Creation Wizard Option to Upload the Electronic Signature Image.
But there's no Use Cases for this Image or I'm not aware.
Anyone mention the use case of this?
Hi,
In Windchill User Creation Wizard Option to Upload the Electronic Signature Image.
But there's no Use Cases for this Image or I'm not aware.
Anyone mention the use case of this?
Hello,
You have to write own code to achieve that needs.
The example how to use API to get signature picture is
WTUser user = (WTUser) SessionHelper.getPrincipal(); // find user (in this example only logged user is used it is just for this example)
StandardOrganizationServicesManager stOrgmanager = StandardOrganizationServicesManager.newStandardOrganizationServicesManager();// create service manager to get signature
ElectronicSignature signature = stOrgmanager.getUserSignature(user); // get signature from user
ApplicationData adata = stOrgmanager.getUserSignatureApplicationData(signature); // get Application data where you can get picture of signature
Then you need to write a code to put the picture to existing PDF file in the system.
You can do it in a workflow but the workflow is limited to 4k characters in one robot.
PetrH
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.