Previous Topic: SetInvValue - Change the Attribute ValueNext Topic: SetMIFValue - Change the Attribute Value


SetLocalPath - Copy the String to the UAM Job Local Path Field

Valid on UNIX and Windows

The SetLocalPath function copies the string specified by the parameter Text to the Asset Management (UAM) Job Local Path field.

Function format:

SetLocalPath(Text as string) as Boolean
Text

Defines the local path, for example, C:\TEMP\NEW.

On successful completion, the function returns TRUE (nonzero); otherwise, returns FALSE (zero).

Example:

If (SetLocalPath("C:\TEMP\NEW"))
Then Print ("SetLocalPath succeeded")
Else
	Print ("SetLocalPath failed")
Endif