DBA Data[Home] [Help]

PACKAGE: APPS.ZX_DET_FACTOR_TEMPL_DTL_PKG

Source


1 package ZX_DET_FACTOR_TEMPL_DTL_PKG as
2 /* $Header: zxddetfactordtls.pls 120.3 2003/12/19 20:59:34 ssekuri ship $ */
3 
4 TYPE T_DET_FACTOR_TEMPL_ID
5                is TABLE of zx_det_factor_templ_dtl.det_factor_templ_id%type
6                   index by binary_integer;
7 TYPE T_DETERMINING_FACTOR_CLASS
8                is TABLE of zx_det_factor_templ_dtl.Determining_Factor_Class_Code%type
9                   index by binary_integer;
10 TYPE T_DETERMINING_FACTOR_CQ
11                is TABLE of zx_det_factor_templ_dtl.Determining_Factor_Cq_Code%type
12                   index by binary_integer;
13 TYPE T_DETERMINING_FACTOR_CODE
14                is TABLE of zx_det_factor_templ_dtl.determining_factor_code%type
15                   index by binary_integer;
16 TYPE T_REQUIRED_FLG is TABLE of zx_det_factor_templ_dtl.Required_Flag%type
17                      index by binary_integer;
18 TYPE T_RECORD_TYPE is TABLE of zx_det_factor_templ_dtl.Record_Type_Code%type
19                      index by binary_integer;
20 
21 procedure bulk_insert_df_templ_dtl (
22   X_DET_FACTOR_TEMPL_ID         IN t_det_factor_templ_id,
23   X_Determining_Factor_Class_Co IN t_determining_factor_class,
24   X_Determining_Factor_Cq_Code  IN t_determining_factor_cq,
25   X_DETERMINING_FACTOR_CODE     IN t_determining_factor_code,
26   X_Required_Flag               IN t_required_flg,
27   X_Record_Type_Code            IN t_record_type) ;
28 
29 end ZX_DET_FACTOR_TEMPL_DTL_PKG;