23 lines
1.0 KiB
MySQL
23 lines
1.0 KiB
MySQL
|
CREATE OR REPLACE PACKAGE Adempiere_Context
|
||
|
/*************************************************************************
|
||
|
* The contents of this file are subject to the Adempiere License. You may
|
||
|
* obtain a copy of the License at http://www.adempiere.org/license.html
|
||
|
* Software is on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
|
||
|
* express or implied. See the License for details. Code: Adempiere ERP+CRM
|
||
|
* Copyright (C) 1999-2001 Jorg Janke, ComPiere, Inc. All Rights Reserved.
|
||
|
*************************************************************************
|
||
|
* $Id: Context_Header.sql,v 1.1 2006/04/21 17:51:58 jjanke Exp $
|
||
|
***
|
||
|
* Title: Context Header
|
||
|
* Description:
|
||
|
************************************************************************/
|
||
|
AS
|
||
|
PROCEDURE Login (UserName VARCHAR2, UserPwd VARCHAR2, UserRole VARCHAR2, UserLang VARCHAR2 DEFAULT 'USAENG');
|
||
|
--
|
||
|
PROCEDURE SetEnv (Name VARCHAR2, NewValue VARCHAR);
|
||
|
--
|
||
|
FUNCTION GetPredicate (ObjectSchema VARCHAR2, ObjectName VARCHAR2) RETURN VARCHAR2;
|
||
|
--
|
||
|
END Adempiere_Context;
|
||
|
/
|