Siebel Object Interfaces Reference > Interfaces Reference > Application Methods >

LoadUserAttributes Method


The LoadUserAttributes method loads a user profile into the session.

Syntax

LoadUserAttributes(row-id)

Argument
Description

row-id

The row-id of the person whose profile needs to be loaded.

Returns

Not applicable

Usage

If this function is called with no argument, it unloads the loaded user profile. This loaded profile can be accessed as the "You" profile from personalization rules. For more information, read Siebel Personalization Administration Guide.

Used With

Server Script

Example

The following VB example shows a method that loads a user profile into the session. The function is exposed on the Siebel Application Object.

Function LoadUserProfile As Integer
TheApplication.InvokeMethod ("LoadUserAttributes","0-10N07")
End Function

This function has only one argument: the row-id of the person whose profile needs to be loaded. If this function is called with empty arguments, it unloads the loaded user profile.

Function LoadUserProfile As Integer
TheApplication.InvokeMethod ("LoadUserAttributes", "")
End Function

Siebel Object Interfaces Reference