Insert determined information into the Service Portal page
The user or computer information determined by IBI-helpMe can be embedded into a Service Portal page.
What type of information can be determined is explained under Information to be determined. Only the syntax differs from that used in the configuration file. The following example shows the difference:
Konfigurationsdatei
XML
<configuration version="1.2.0">
<applicationSettings>
...
<!-- Active Directory -->
<collectedValue type="ActiveDirectory" displayName="Telefon" value="telephoneNumber" source="User" />
<!-- Local -->
<collectedValue type="Local" displayName="SitzungsId" value="SessionId" />
...
</applicationSettings>
</configuration>
Service Portal
XML
<html>
<body>
<p>
Your telephone number: <br/>
{%ActiveDirectory.User.telephoneNumber%}
</p>
<p>
Your current session ID is: <br/>
{%Local.SessionId%}
</p>
</body>
</html>