DBA Data[Home] [Help]

PACKAGE BODY: APPS.EDR_CTX_PKG

Source


1 PACKAGE BODY edr_ctx_pkg AS
2 /*  $Header: EDRSECXB.pls 120.0.12000000.1 2007/01/18 05:55:27 appldev ship $ */
3 PROCEDURE set_secure_attr IS
4 begin
5 	DBMS_SESSION.SET_CONTEXT('edr_secure_ctx','secure','Y');
6 end;
7 
8 
9 --Bug 3468810: start
10 -- we need a new api to unset the secure context
11 PROCEDURE unset_secure_attr IS
12 begin
13         DBMS_SESSION.SET_CONTEXT('edr_secure_ctx','secure','');
14 end;
15 --Bug 3468810i: end
16 end edr_ctx_pkg;