DBA Data[Home] [Help]

APPS.PA_BUDGET_LINES_V_PKG dependencies on FND_API

Line 157: RAISE FND_API.G_EXC_ERROR;

153: /* MRC */
154: /*
155: IF x_mrc_flag IS NULL THEN
156: l_msg_data := 'x_mrc_flag cannot be null to table handler';
157: RAISE FND_API.G_EXC_ERROR;
158: END IF;
159: */
160:
161: open get_budget_type_code;

Line 316: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR)

312:
313: -- This table handler can't really handle public API error handling, but I will put it
314: -- in any way with minimal exception coding and a RAISE.
315:
316: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR)
317: THEN
318: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
319:
320: ELSIF (l_return_status = FND_API.G_RET_STS_ERROR)

Line 318: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

314: -- in any way with minimal exception coding and a RAISE.
315:
316: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR)
317: THEN
318: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
319:
320: ELSIF (l_return_status = FND_API.G_RET_STS_ERROR)
321: THEN
322: RAISE FND_API.G_EXC_ERROR;

Line 320: ELSIF (l_return_status = FND_API.G_RET_STS_ERROR)

316: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR)
317: THEN
318: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
319:
320: ELSIF (l_return_status = FND_API.G_RET_STS_ERROR)
321: THEN
322: RAISE FND_API.G_EXC_ERROR;
323: END IF;
324:

Line 322: RAISE FND_API.G_EXC_ERROR;

318: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
319:
320: ELSIF (l_return_status = FND_API.G_RET_STS_ERROR)
321: THEN
322: RAISE FND_API.G_EXC_ERROR;
323: END IF;
324:
325: SELECT pa_budget_lines_s.nextval
326: INTO l_budget_line_id

Line 457: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

453: x_msg_count => l_msg_count,
454: x_msg_data => l_msg_data);
455: END IF;
456:
457: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
458: RAISE g_mrc_exception;
459: END IF;
460:
461: END IF;

Line 501: WHEN FND_API.G_EXC_ERROR

497: -- Since the table handler was not designed for this kind of thing, the public API
498: -- error-handling OUT-parameters are not populated.
499:
500: EXCEPTION
501: WHEN FND_API.G_EXC_ERROR
502: THEN
503: FND_MSG_PUB.Add_Exc_Msg
504: ( p_pkg_name => 'PA_BUDGET_LINES_V_PKG'
505: , p_procedure_name => 'INSERT_ROW'

Line 512: WHEN FND_API.G_EXC_UNEXPECTED_ERROR

508: IF c%ISOPEN THEN /* Bug# 2628072 */
509: CLOSE C;
510: END IF;
511: RAISE;
512: WHEN FND_API.G_EXC_UNEXPECTED_ERROR
513: THEN
514: FND_MSG_PUB.Add_Exc_Msg
515: ( p_pkg_name => 'PA_BUDGET_LINES_V_PKG'
516: , p_procedure_name => 'INSERT_ROW'

Line 841: RAISE FND_API.G_EXC_ERROR;

837: /* FPB2: MRC */
838: /*
839: IF x_mrc_flag IS NULL THEN
840: l_msg_data := 'x_mrc_flag cannot be null to table handler';
841: RAISE FND_API.G_EXC_ERROR;
842: END IF;
843: */
844:
845: open get_budget_type_code;

Line 1018: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

1014: x_msg_count => l_msg_count,
1015: x_msg_data => l_msg_data);
1016: END IF;
1017:
1018: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
1019: RAISE g_mrc_exception;
1020: END IF;
1021:
1022: END IF;

Line 1065: WHEN FND_API.G_EXC_ERROR

1061: -- Since the table handler was not designed for this kind of thing, the public API
1062: -- error-handling OUT-parameters are not populated.
1063:
1064: EXCEPTION
1065: WHEN FND_API.G_EXC_ERROR
1066: THEN
1067: FND_MSG_PUB.Add_Exc_Msg
1068: ( p_pkg_name => 'PA_BUDGET_LINES_V_PKG'
1069: , p_procedure_name => 'UPDATE_ROW'

Line 1073: WHEN FND_API.G_EXC_UNEXPECTED_ERROR

1069: , p_procedure_name => 'UPDATE_ROW'
1070: , p_error_text => 'ORA-'||LPAD(substr(SQLCODE,2),5,'0')
1071: );
1072: RAISE;
1073: WHEN FND_API.G_EXC_UNEXPECTED_ERROR
1074: THEN
1075: FND_MSG_PUB.Add_Exc_Msg
1076: ( p_pkg_name => 'PA_BUDGET_LINES_V_PKG'
1077: , p_procedure_name => 'UPDATE_ROW'

Line 1115: RAISE FND_API.G_EXC_ERROR;

1111: /* FPB2: MRC */
1112: /*
1113: IF x_mrc_flag IS NULL THEN
1114: l_msg_data := 'x_mrc_flag cannot be null to table handler';
1115: RAISE FND_API.G_EXC_ERROR;
1116: END IF;
1117: */
1118: select l.raw_cost,
1119: l.burdened_cost,

Line 1201: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

1197: x_msg_count => l_msg_count,
1198: x_msg_data => l_msg_data);
1199: END IF;
1200:
1201: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
1202: RAISE g_mrc_exception;
1203: END IF;
1204:
1205: END IF;