DBA Data[Home] [Help]

APPS.BIL_BI_OPTY_MV_REFRESH_PKG dependencies on STANDARD

Line 44: /* Conform to Standard 2. Retrieving Parameters API_TYPE, MODE, OBJECT_NAM, OBJECT_TYPE */

40: BIS_BIA_RSG_CUSTOM_API_MGMNT.LOG('DB Version: ' || db_version);
41:
42: db_version := substr(db_version,1,instr(db_version,'.',1)-1);
43:
44: /* Conform to Standard 2. Retrieving Parameters API_TYPE, MODE, OBJECT_NAM, OBJECT_TYPE */
45: L_API_TYPE := BIS_BIA_RSG_CUSTOM_API_MGMNT.GET_PARAM(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.PARA_API_TYPE);
46: BIS_BIA_RSG_CUSTOM_API_MGMNT.LOG
47: ('Got value for ' || BIS_BIA_RSG_CUSTOM_API_MGMNT.PARA_API_TYPE || ': ' || L_API_TYPE);
48: L_MODE := BIS_BIA_RSG_CUSTOM_API_MGMNT.GET_PARAM(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.PARA_MODE);

Line 85: /* Conform to Standard 3. Setting Complete Status and Message */

81: BIS_BIA_RSG_CUSTOM_API_MGMNT.LOG('have set type as complete');
82: END IF;
83: END IF;
84:
85: /* Conform to Standard 3. Setting Complete Status and Message */
86: BIS_BIA_RSG_CUSTOM_API_MGMNT.SET_PARAM(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.PARA_COMPLETE_STATUS,
87: BIS_BIA_RSG_CUSTOM_API_MGMNT.STATUS_SUCCESS );
88: BIS_BIA_RSG_CUSTOM_API_MGMNT.SET_PARAM(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.PARA_MESSAGE,
89: 'Succeeded' );

Line 91: /* Conform to Standard 6. Error Handling */

87: BIS_BIA_RSG_CUSTOM_API_MGMNT.STATUS_SUCCESS );
88: BIS_BIA_RSG_CUSTOM_API_MGMNT.SET_PARAM(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.PARA_MESSAGE,
89: 'Succeeded' );
90: EXCEPTION WHEN OTHERS THEN
91: /* Conform to Standard 6. Error Handling */
92: BIS_BIA_RSG_CUSTOM_API_MGMNT.SET_PARAM(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.PARA_COMPLETE_STATUS,
93: BIS_BIA_RSG_CUSTOM_API_MGMNT.STATUS_FAILURE );
94: BIS_BIA_RSG_CUSTOM_API_MGMNT.SET_PARAM(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.PARA_MESSAGE, sqlerrm );
95: END CUSTOM_API;