DBA Data[Home] [Help]

APPS.QP_FORMULA_RULES_PVT dependencies on FND_API

Line 243: RAISE FND_API.G_EXC_ERROR;

239:
240: -- if there was an error in compiling the package, raise
241: -- an error
242: if n > 0 then
243: RAISE FND_API.G_EXC_ERROR;
244: end if;
245:
246:
247: IF n = 0 THEN

Line 311: RAISE FND_API.G_EXC_ERROR;

307: -- if there was an error in compiling the package, raise
308: -- an error
309:
310: if n > 0 then
311: RAISE FND_API.G_EXC_ERROR;
312: end if;
313:
314: PUT_LINE('Generated PACKAGE '||p_pkg_type ||' :'||l_new_pkg_name ||' Successfully');
315:

Line 324: when FND_API.G_EXC_ERROR then

320: END IF;--instr
321: END IF;--n=0
322:
323: exception
324: when FND_API.G_EXC_ERROR then
325: raise FND_API.G_EXC_ERROR;
326: when others THEN
327: raise_application_error(-20000,SQLERRM||' '||ad_ddl.error_buf);
328: -- PUT_LINE('Iam into exception' ||ad_ddl.error_buf);

Line 325: raise FND_API.G_EXC_ERROR;

321: END IF;--n=0
322:
323: exception
324: when FND_API.G_EXC_ERROR then
325: raise FND_API.G_EXC_ERROR;
326: when others THEN
327: raise_application_error(-20000,SQLERRM||' '||ad_ddl.error_buf);
328: -- PUT_LINE('Iam into exception' ||ad_ddl.error_buf);
329: -- RAISE FND_API.G_EXC_ERROR;

Line 329: -- RAISE FND_API.G_EXC_ERROR;

325: raise FND_API.G_EXC_ERROR;
326: when others THEN
327: raise_application_error(-20000,SQLERRM||' '||ad_ddl.error_buf);
328: -- PUT_LINE('Iam into exception' ||ad_ddl.error_buf);
329: -- RAISE FND_API.G_EXC_ERROR;
330:
331: END Pkg_End;
332:
333: -- Generates the Package Header for the package SPEC and BODY

Line 666: WHEN FND_API.G_EXC_ERROR THEN

662: oe_debug_pub.add('##### End Build Formulas #####');
663:
664: EXCEPTION
665:
666: WHEN FND_API.G_EXC_ERROR THEN
667: FND_MESSAGE.SET_NAME('QP','QP_ATTRIBUTE_SOURCING_ERROR');
668: FND_MESSAGE.SET_TOKEN('PACKAGE_TYPE','BODY');
669: FND_MESSAGE.SET_TOKEN('PACKAGE_NAME','QP_BUILD_FORMULA_RULES');
670: FND_MESSAGE.SET_TOKEN('ERRMSG',substr(SQLERRM,1,150));