DBA Data[Home] [Help]

APPS.BOM_OE_EXPLODER_PKG dependencies on FND_MESSAGE

Line 1328: FND_MESSAGE.Set_Name('BOM', 'BOM_LOOP_EXISTS');

1324: substrb(SQLERRM,1,60);
1325: ROLLBACK ;
1326: WHEN x_loop_detected THEN
1327: arg_error_code := 9999;
1328: FND_MESSAGE.Set_Name('BOM', 'BOM_LOOP_EXISTS');
1329: arg_err_msg := FND_MESSAGE.GET;
1330: ROLLBACK; --bug 2709042
1331: WHEN x_no_top_assy THEN
1332: arg_error_code := 9998;

Line 1329: arg_err_msg := FND_MESSAGE.GET;

1325: ROLLBACK ;
1326: WHEN x_loop_detected THEN
1327: arg_error_code := 9999;
1328: FND_MESSAGE.Set_Name('BOM', 'BOM_LOOP_EXISTS');
1329: arg_err_msg := FND_MESSAGE.GET;
1330: ROLLBACK; --bug 2709042
1331: WHEN x_no_top_assy THEN
1332: arg_error_code := 9998;
1333: FND_MESSAGE.Set_Name('BOM', 'BOM_BILL_DOES_NOT_EXIST');

Line 1333: FND_MESSAGE.Set_Name('BOM', 'BOM_BILL_DOES_NOT_EXIST');

1329: arg_err_msg := FND_MESSAGE.GET;
1330: ROLLBACK; --bug 2709042
1331: WHEN x_no_top_assy THEN
1332: arg_error_code := 9998;
1333: FND_MESSAGE.Set_Name('BOM', 'BOM_BILL_DOES_NOT_EXIST');
1334: arg_err_msg := FND_MESSAGE.GET;
1335: ROLLBACK; --bug 2709042
1336: WHEN x_bom_expl_del THEN
1337: arg_error_code := 9997;

Line 1334: arg_err_msg := FND_MESSAGE.GET;

1330: ROLLBACK; --bug 2709042
1331: WHEN x_no_top_assy THEN
1332: arg_error_code := 9998;
1333: FND_MESSAGE.Set_Name('BOM', 'BOM_BILL_DOES_NOT_EXIST');
1334: arg_err_msg := FND_MESSAGE.GET;
1335: ROLLBACK; --bug 2709042
1336: WHEN x_bom_expl_del THEN
1337: arg_error_code := 9997;
1338: FND_MESSAGE.Set_Name('BOM', 'BOM_EXPL_DEL_IN_PROGRESS');

Line 1338: FND_MESSAGE.Set_Name('BOM', 'BOM_EXPL_DEL_IN_PROGRESS');

1334: arg_err_msg := FND_MESSAGE.GET;
1335: ROLLBACK; --bug 2709042
1336: WHEN x_bom_expl_del THEN
1337: arg_error_code := 9997;
1338: FND_MESSAGE.Set_Name('BOM', 'BOM_EXPL_DEL_IN_PROGRESS');
1339: FND_MESSAGE.Set_Token('REQUEST_ID', x_req_id);
1340: arg_err_msg := FND_MESSAGE.GET;
1341: ROLLBACK; --bug 2709042
1342: /* Fix for bug 9198518- handle below exception which gets thrown

Line 1339: FND_MESSAGE.Set_Token('REQUEST_ID', x_req_id);

1335: ROLLBACK; --bug 2709042
1336: WHEN x_bom_expl_del THEN
1337: arg_error_code := 9997;
1338: FND_MESSAGE.Set_Name('BOM', 'BOM_EXPL_DEL_IN_PROGRESS');
1339: FND_MESSAGE.Set_Token('REQUEST_ID', x_req_id);
1340: arg_err_msg := FND_MESSAGE.GET;
1341: ROLLBACK; --bug 2709042
1342: /* Fix for bug 9198518- handle below exception which gets thrown
1343: when bom explosion is already underway.

Line 1340: arg_err_msg := FND_MESSAGE.GET;

1336: WHEN x_bom_expl_del THEN
1337: arg_error_code := 9997;
1338: FND_MESSAGE.Set_Name('BOM', 'BOM_EXPL_DEL_IN_PROGRESS');
1339: FND_MESSAGE.Set_Token('REQUEST_ID', x_req_id);
1340: arg_err_msg := FND_MESSAGE.GET;
1341: ROLLBACK; --bug 2709042
1342: /* Fix for bug 9198518- handle below exception which gets thrown
1343: when bom explosion is already underway.
1344: Rollback all the changes, then explicitly reset request_id as NULL.*/

Line 1347: FND_MESSAGE.Set_Name('BOM', 'BOM_EXPLOSION_IN_PROGRESS');

1343: when bom explosion is already underway.
1344: Rollback all the changes, then explicitly reset request_id as NULL.*/
1345: WHEN x_bom_expl_run THEN
1346: arg_error_code := 9996;
1347: FND_MESSAGE.Set_Name('BOM', 'BOM_EXPLOSION_IN_PROGRESS');
1348: arg_err_msg := FND_MESSAGE.GET;
1349: ROLLBACK;
1350:
1351: WHEN update_exp THEN

Line 1348: arg_err_msg := FND_MESSAGE.GET;

1344: Rollback all the changes, then explicitly reset request_id as NULL.*/
1345: WHEN x_bom_expl_run THEN
1346: arg_error_code := 9996;
1347: FND_MESSAGE.Set_Name('BOM', 'BOM_EXPLOSION_IN_PROGRESS');
1348: arg_err_msg := FND_MESSAGE.GET;
1349: ROLLBACK;
1350:
1351: WHEN update_exp THEN
1352: ROLLBACK; --update_exp definition added for bug 8496032