Using user definitions on job types with advanced options
On job types with advanced options, regardless of the operating system of the dynamic agent that will run the job, you can provide the username of a user definition in the credentials section of the job and have the password field resolved at runtime with the password value stored in the database.
For example, when you define the job with the Dynamic Workload Console,
you enter the username of a user definition and click the ellipsis
(...) located next to the password field to display the following Password
type
widget:
where you select User
as shown. You can likewise
code this option in the task section (JSDL) of the job definition
in composer. See the related sections for more information.
use
access
keyword for object type userobj
, that is:userobj access=use
- If the workstation is not specified (for example,
${password:myuser}
):- Searches
myuser
on the workstation running the job applying a case sensitive policy. - Searches
myuser
on the workstation running the job applying a case insensitive policy. - Searches
myuser
without an associated workstation applying a case sensitive policy. - Searches
myuser
without an associated workstation applying a case insensitive policy.
- Searches
- If the workstation is specified (for example,
${password:agent#myuser}
):- Searches
myuser
on workstationagent
applying a case sensitive policy. - Searches
myuser
on workstationagent
applying a case insensitive policy. - Searches
myuser
without an associated workstation applying a case sensitive policy. - Searches
myuser
without an associated workstation applying a case insensitive policy.
- Searches
- If the workstation is specified but is empty (for example,
${password:#myuser}
):- Searches
myuser
without an associated workstation applying a case sensitive policy. - Searches
myuser
without an associated workstation applying a case insensitive policy.
- Searches