DBA Data[Home] [Help]

APPS.JAI_RGM_LKPS_PKG dependencies on JAI_RGM_LKPS_PKG

Line 1: PACKAGE BODY jai_rgm_lkps_pkg AS

1: PACKAGE BODY jai_rgm_lkps_pkg AS
2: /* $Header: jai_rgm_lkps_th.plb 120.3 2006/01/20 16:14:03 avallabh ship $ */
3:
4: PROCEDURE Load_Row( x_regime_code VARCHAR2,
5: x_attribute_type_code VARCHAR2,

Line 60: jai_rgm_lkps_pkg.Update_Row(

56: /* Update only if force_edits is 'Y' or if vf_ludate > vd_ludate */
57:
58: if ( vf_ludate > vd_ludate or X_Force_Edits = 'Y' ) then
59: -- update row if present
60: jai_rgm_lkps_pkg.Update_Row(
61: X_Rowid => v_rowid,
62: X_regime_code => X_regime_code ,
63: x_attribute_type_code => x_attribute_type_code ,
64: x_attribute_code => x_attribute_code ,

Line 75: jai_rgm_lkps_pkg.Insert_Row(

71: X_last_update_login => 0);
72: end if;
73: EXCEPTION
74: when NO_DATA_FOUND then
75: jai_rgm_lkps_pkg.Insert_Row(
76: X_Rowid => v_rowid,
77: X_regime_code => X_regime_code ,
78: x_attribute_type_code => x_attribute_type_code ,
79: x_attribute_code => x_attribute_code ,

Line 92: fnd_message.set_token('JAI_MESSAGE', 'Error in Load_Row: jai_rgm_lkps_pkg');

88: END;
89: EXCEPTION
90: WHEN OTHERS then
91: fnd_message.set_name('JA', 'JAI_VALUE_MESSAGE');
92: fnd_message.set_token('JAI_MESSAGE', 'Error in Load_Row: jai_rgm_lkps_pkg');
93: app_exception.raise_exception;
94: END Load_Row;
95:
96: PROCEDURE Insert_Row(

Line 189: END jai_rgm_lkps_pkg ;

185: end if;
186:
187: END Update_Row;
188:
189: END jai_rgm_lkps_pkg ;