DBA Data[Home] [Help]

APPS.BSC_UPGRADES_GENERIC dependencies on FND_API

Line 82: RAISE FND_API.G_EXC_ERROR;

78: l_property_code := 'GRANT_ROLE_TAB';
79:
80: -- check bsc_sys_init for flag
81: IF NOT BSC_UPDATE_UTIL.Get_Init_Variable_Value(l_property_code, l_property_value) THEN
82: RAISE FND_API.G_EXC_ERROR;
83: END IF;
84: --dbms_output.put_line(substr('Value of l_property_value='||l_property_value,1,255));
85:
86: IF (l_property_value IS NULL) THEN -- run for the first time

Line 125: IF (l_success <> FND_API.G_TRUE) THEN

121: ,x_grant_guid => l_grant_guid
122: ,x_success => l_success
123: ,x_errorcode => l_errorcode
124: );
125: IF (l_success <> FND_API.G_TRUE) THEN
126: --DBMS_OUTPUT.PUT_LINE('BSC_UPGRADES.Update_Role_To_Tabs Failed: at FND_GRANTS_PKG.GRANT_FUNCTION );
127: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
128: END IF;
129: END LOOP; -- end loop for users

Line 127: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

123: ,x_errorcode => l_errorcode
124: );
125: IF (l_success <> FND_API.G_TRUE) THEN
126: --DBMS_OUTPUT.PUT_LINE('BSC_UPGRADES.Update_Role_To_Tabs Failed: at FND_GRANTS_PKG.GRANT_FUNCTION );
127: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
128: END IF;
129: END LOOP; -- end loop for users
130: END LOOP; -- end loop for tabs
131:

Line 134: RAISE FND_API.G_EXC_ERROR;

130: END LOOP; -- end loop for tabs
131:
132: -- register the flag, so it won't run next time
133: IF NOT BSC_UPDATE_UTIL.Write_Init_Variable_Value(l_property_code, '0') THEN
134: RAISE FND_API.G_EXC_ERROR;
135: END IF;
136: END IF;
137:
138: RETURN TRUE;

Line 195: RAISE FND_API.G_EXC_ERROR;

191: l_property_code := 'TAB_VIEW_FUNCS';
192:
193: -- check bsc_sys_init for flag
194: IF NOT BSC_UPDATE_UTIL.Get_Init_Variable_Value(l_property_code, l_property_value) THEN
195: RAISE FND_API.G_EXC_ERROR;
196: END IF;
197: --dbms_output.put_line(substr('Value of l_property_value='||l_property_value,1,255));
198:
199: IF (l_property_value IS NULL) THEN -- run for the first time

Line 220: RAISE FND_API.G_EXC_ERROR;

216: END LOOP; -- end loop for tab views
217:
218: -- register the flag, so it won't run next time
219: IF NOT BSC_UPDATE_UTIL.Write_Init_Variable_Value(l_property_code, '0') THEN
220: RAISE FND_API.G_EXC_ERROR;
221: END IF;
222: END IF;
223:
224: RETURN TRUE;

Line 272: RAISE FND_API.G_EXC_ERROR;

268: l_property_code := 'TAB_VIEW_KPIS';
269:
270: -- check bsc_sys_init for flag
271: IF NOT BSC_UPDATE_UTIL.Get_Init_Variable_Value(l_property_code, l_property_value) THEN
272: RAISE FND_API.G_EXC_ERROR;
273: END IF;
274: --dbms_output.put_line(substr('Value of l_property_value='||l_property_value,1,255));
275:
276: IF (l_property_value IS NULL) THEN -- run for the first time

Line 325: RAISE FND_API.G_EXC_ERROR;

321: END LOOP; -- end loop for tab views
322:
323: -- register the flag, so it won't run next time
324: IF NOT BSC_UPDATE_UTIL.Write_Init_Variable_Value(l_property_code, '0') THEN
325: RAISE FND_API.G_EXC_ERROR;
326: END IF;
327: END IF;
328:
329: RETURN TRUE;