DBA Data[Home] [Help]

APPS.BIM_DBI_SCM_RSG_API_PVT dependencies on STANDARD

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

95: LOOP
96: /* If Version is 9i then do then index management else do nothing */
97: IF l_rec.ver = 9 THEN
98: /* IF mode is null it means that this is the incremental mode so do no do anything and exit else do the Manage.*/
99: /* Conform to Standard 2. Retrieving Parameters API_TYPE, MODE, OBJECT_NAM, OBJECT_TYPE */
100: l_mode := BIS_BIA_RSG_CUSTOM_API_MGMNT.Get_Param(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.Para_Mode);
101: l_api_type := BIS_BIA_RSG_CUSTOM_API_MGMNT.Get_Param(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.Para_Api_Type);
102: l_obj_name := BIS_BIA_RSG_CUSTOM_API_MGMNT.Get_Param(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.Para_Object_Name);
103:

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

126: NULL;
127: END IF;
128: END LOOP;
129:
130: /* Conform to Standard 3. Setting Complete Status and Message */
131: BIS_BIA_RSG_CUSTOM_API_MGMNT.Set_Param(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.Para_Complete_Status, BIS_BIA_RSG_CUSTOM_API_MGMNT.Status_Success);
132: BIS_BIA_RSG_CUSTOM_API_MGMNT.Set_Param(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.Para_Message, 'Succeeded');
133:
134:

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

133:
134:
135:
136: EXCEPTION WHEN OTHERS THEN
137: /* Conform to Standard 6. Error Handling */
138: BIS_BIA_RSG_CUSTOM_API_MGMNT.Set_Param(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.Para_Complete_Status,BIS_BIA_RSG_CUSTOM_API_MGMNT.Status_Failure);
139: BIS_BIA_RSG_CUSTOM_API_MGMNT.Set_Param(p_param, BIS_BIA_RSG_CUSTOM_API_MGMNT.Para_Message, sqlerrm);
140:
141: END bim_Custom_Api;