Set_Property
(identity_ IN VARCHAR, name_ IN VARCHAR2, value_ IN VARCHAR2)
This procedure sets a user specific property.
Name | Description |
---|---|
identity_ | The user identity |
name_ | The property name |
value_ | The property value |
None.
None.
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.
user_id_ VARCHAR2(30) := 'CHRIS'; .. Fnd_User_API.Set_Property(user_id_, 'SMTP_MAIL_ADDRESS', 'chka@crome.srt.com'); ..