Method createGuidHexUpperCase()

Provides a GUID without hyphens and without lowercase letters, as done by ABAP function GUID_CREATE.

Example: 7DDB78128B2B11D9CBE5000802D9D312

Parameters of the Method

Type

Name

Description

Return, String

 

GUID in Hex format in uppercase letters

Example

 A coding example how GUIDs of different formats can be requested in an xslt program is given below.

<guid><xsl:value-of select="Guid:createGuid()"/></guid>
 <guid><xsl:value-of select="Guid:createGuidHex()"/></guid>
 <guid><xsl:value-of select="Guid:createGuidHexUpperCase()"/></guid>

The resulting output would look like this:

  <guid>7ddb7810-8b2b-11d9-aa57-000802d9d312</guid>
    <guid>7ddb78118b2b11d990b9000802d9d312</guid>
    <guid>7DDB78128B2B11D9CBE5000802D9D312</guid>