DBA Data[Home] [Help]

APPS.QP_FORMULA_RULES_PVT dependencies on FND_API

Line 246: RAISE FND_API.G_EXC_ERROR;

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

Line 345: RAISE FND_API.G_EXC_ERROR;

341: -- if there was an error in compiling the package, raise
342: -- an error
343:
344: if n > 0 then
345: RAISE FND_API.G_EXC_ERROR;
346: end if;
347:
348: PUT_LINE('Generated PACKAGE '||p_pkg_type ||' :'||l_new_pkg_name ||' Successfully');
349:

Line 398: when FND_API.G_EXC_ERROR then

394: END IF;--instr
395: END IF;--n=0
396:
397: exception
398: when FND_API.G_EXC_ERROR then
399: raise FND_API.G_EXC_ERROR;
400: when others THEN
401: raise_application_error(-20000,SQLERRM||' '||ad_ddl.error_buf);
402: -- PUT_LINE('Iam into exception' ||ad_ddl.error_buf);

Line 399: raise FND_API.G_EXC_ERROR;

395: END IF;--n=0
396:
397: exception
398: when FND_API.G_EXC_ERROR then
399: raise FND_API.G_EXC_ERROR;
400: when others THEN
401: raise_application_error(-20000,SQLERRM||' '||ad_ddl.error_buf);
402: -- PUT_LINE('Iam into exception' ||ad_ddl.error_buf);
403: -- RAISE FND_API.G_EXC_ERROR;

Line 403: -- RAISE FND_API.G_EXC_ERROR;

399: raise FND_API.G_EXC_ERROR;
400: when others THEN
401: raise_application_error(-20000,SQLERRM||' '||ad_ddl.error_buf);
402: -- PUT_LINE('Iam into exception' ||ad_ddl.error_buf);
403: -- RAISE FND_API.G_EXC_ERROR;
404:
405: END Pkg_End;
406:
407: -- Generates the Package Header for the package SPEC and BODY

Line 741: WHEN FND_API.G_EXC_ERROR THEN

737: oe_debug_pub.add('##### End Build Formulas #####');
738:
739: EXCEPTION
740:
741: WHEN FND_API.G_EXC_ERROR THEN
742: FND_MESSAGE.SET_NAME('QP','QP_ATTRIBUTE_SOURCING_ERROR');
743: FND_MESSAGE.SET_TOKEN('PACKAGE_TYPE','BODY');
744: FND_MESSAGE.SET_TOKEN('PACKAGE_NAME','QP_BUILD_FORMULA_RULES');
745: FND_MESSAGE.SET_TOKEN('ERRMSG',substr(SQLERRM,1,150));