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>
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>
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>