Set_Property

Set_Property (identity_ IN VARCHAR,
              name_ IN VARCHAR2,
              value_ IN VARCHAR2)

Purpose

This procedure sets a user specific property.

Parameters

Name Description
identity_ The user identity
name_ The property name
value_ The property value

Returns

None.

Pragma

None.

Comments

This interface is to be used when user specific properties should be set to be used during the session ad for future connections. See reference manual for reserved user properties.

Example

user_id_ VARCHAR2(30) := 'CHRIS';
..
Fnd_User_API.Set_Property(user_id_, 'SMTP_MAIL_ADDRESS',
'chka@crome.srt.com');
..