DBA Data[Home] [Help]

PACKAGE: APPS.BEN_GUEST_USER_API

Source


1 Package ben_guest_user_api as
2 /* $Header: begstusr.pkh 120.0.12010000.2 2008/08/05 14:26:31 ubhat ship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |------------------------< ben_guest_user_api >----------------------|
6 -- ---------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 --
11 -- This procedure allows to login to oracle applications from web interface
12 -- without going through sign on web page.
13 -- Useful to customers who want to provide a link to access the applications
14 -- directly.
15 --
16 -- Prerequisites:
17 -- A Oracle applications user with user id as guest AND password as welcome
18 -- should be created if these parameters are not provided in the html
19 -- link. This defaulting allows customers to hide the userid and password
20 -- paramters.
21 --
22 -- In Parameters:
23 --   Name                           Reqd Type     Description
24 --
25 --   rmode                          No   number   1 is JAVA_MODE, 2 is PLSQL_MODE
26 --   i_1                            No   varchar2 Applications Userid
27 --   i_2                            No   varchar2 Applications Password
28 --   home_url                       No   varchar2 Used to store in ICX_SESSIONS table.
29 --   i_direct                       No   varchar2 <Could not find any information>
30 --
31 procedure login(rmode       in     number  default 2,
32                i_1         in     varchar2 ,
33                i_2         in     varchar2 ,
34                home_url    in     varchar2 default NULL,
35                i_direct    IN     VARCHAR2 DEFAULT NULL);
36 end ben_guest_user_api;