Please enable JavaScript to view this site.

Version:

Void setValueForKey(String keyName, String value)

Description

Sets the value for a key in the key/value store. The key/value data store is saved in the UTI_POSTSERVER_KEYVALUE table.

Parameter

Value

keyName

Name of the key for which the value is to be stored.

value

Value to be stored in the key/value store.

Return value

None.

Example:

<result>
  <xsl:value-of select='utiapi:getValueForKey("SAP_SYSTEM","SX1")' />
</result>

 

String getValueForKey(String keyName)

Description

Gets the value for a specific key from the key/value store. The data of the key/value store is saved in the UTI_POSTSERVER_KEYVALUE table.

Parameter

Value

keyName

Name of the key for which the value is to be returned.

Return value

The returned value is a string representing the value associated with the key in the key/value store. If the key does not exist in the key/value store, an empty string is returned.

Example:

<result>
  <xsl:value-of select='utiapi:getValueForKey("SAP_SYSTEM")' />
</result>

String deleteKey(String keyName)

Description

Deletes a key from the key/value store. The data of the key/value store is saved in the UTI_POSTSERVER_KEYVALUE table.

Parameter

Value

keyName

Name of the key that is to be deleted.

Return value

None.

Example:

<result>
  <xsl:value-of select='utiapi:deleteKey("SAP_SYSTEM")' />
</result>

© 2024 VertiGIS GmbH. All Rights Reserved. | Privacy Center | Imprint
Documentation Version 10.0 (fa3b2a93)