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 user whose profile needs to be loaded

Returns

Not applicable

Usage

This function has only one argument: the row ID of the user whose profile needs to be loaded. This loaded profile can be accessed as the "You" profile from personalization rules, with one exception: if the row ID is that of the current user, the profile will be loaded into the "Me" profile.

If this function is called with no argument, it unloads the loaded user profile.

For more information on user profiles, see Siebel Personalization Administration Guide.

Used With

Server Script

Example

The following Siebel 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

The following Siebel VB example unloads the loaded user profile:

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

Siebel Object Interfaces Reference Copyright © 2008, Oracle. All rights reserved.