DBA Data[Home] [Help]

PACKAGE: APPS.OE_LINE_PCFWK

Source


1 PACKAGE OE_LINE_PCFWK AUTHID CURRENT_USER AS
2 /* $Header: OEXKLINS.pls 120.0 2005/06/01 00:38:04 appldev noship $ */
3 
4 g_record  OE_AK_ORDER_LINES_V%ROWTYPE;
5 -------------------------------------------
6 --  Start of Comments
7 --  API name    Is_Op_Constrained
8 --  Type        Public
9 --  Function
10 --     You should use this function to check for constraints
11 --     against operations on LINE or its columns
12 --  Pre-reqs
13 --
14 --  Parameters
15 --
16 --  Return
17 --
18 --  Version     Current version = 1.0
19 --              Initial version = 1.0
20 --
21 --  Notes
22 --
23 --  End of Comments
24 FUNCTION Is_Op_Constrained
25  (
26    p_responsibility_id             in number
27    ,p_operation                    in varchar2
28    ,p_column_name                  in varchar2 default NULL
29    ,p_record                       in OE_AK_ORDER_LINES_V%ROWTYPE
30    ,p_check_all_cols_constraint    in varchar2 default 'Y'
31    ,p_is_caller_defaulting         in varchar2 default 'N'
32 ,x_constraint_id out nocopy number
33 
34 ,x_constraining_conditions_grp out nocopy number
35 
36 ,x_on_operation_action out nocopy number
37 
38  )
39  RETURN NUMBER;
40 
41 -------------------------------------------
42 END OE_LINE_PCFWK;