Description Syntax Example setExtAppField

10-78 Oracle Fusion Middleware WebLogic Scripting Tool Command Reference

10.8.4.3 Example

This example creates an additional field named Account with the default value username.default.example in an external application called ABC. This field will be displayed in ABCs login screen. wls:weblogicserverConfig addExtAppFieldappName=webcenter, name=ABC, fieldName=Account, fieldValue=username.default.example, displayToUser=1

10.8.5 setExtAppField

Module: Oracle WebCenter Use with WLST: Online

10.8.5.1 Description

Modifies the field value and display-to-user setting for one or more login fields currently configured for an external application. Either fieldValue or displayToUser must be specified along with the external application name and login field name. The fieldValue and displayToUser arguments are optional. Using this command has implications on any shared or public credentials that you might have created for this external application. If you modify displayToUser to 1, you may also need to update existing shared user or public user credentials. See also Section 10.8.8, setExtAppCredential .

10.8.5.2 Syntax

setExtAppFieldappName, name, fieldName, [fieldValue], [displayToUser], [server, applicationVersion] applicationVersion Optional. Version number of the deployed application. Required if more than one version of the WebCenter application is deployed. Argument Definition appName Name of the WebCenter application in which to perform this operation. name Name of an existing external application connection. fieldName Name of an existing login field. fieldValue Optional. New or changed login field value. Enter a default value for the login field or leave blank for a user to specify. This argument is blank by default. displayToUser Optional. Specifies whether the login field displays on the external applications login screen. Valid options are 1 true and 0 false. If set to 0, fieldValue must be specified. server Optional. Name of the managed server where the WebCenter application is deployed. For example, WC_Spaces. Required when applications with the same name are deployed to different servers and also when you have a cluster. applicationVersion Optional. Version number of the deployed application. Required if more than one version of the WebCenter application is deployed. Argument Definition Oracle WebCenter Custom WLST Commands 10-79

10.8.5.3 Example

The following example specifies a default value for a login field named Account and displays the field on the external applications credential provisioning screen. wls:weblogicserverConfig setExtAppFieldappName=webcenter, name=ABC, fieldName=Account, fieldValue=admin, displayToUser=1

10.8.6 removeExtAppField