DBA Data[Home] [Help]

APPS.PO_HXC_INTERFACE_PVT dependencies on FND_API

Line 30: -- FND_API.G_RET_STS_SUCCESS if the API completed successfully.

26: --x_amount
27: -- Total timecard amount for the PO line; 0 if no contractor is associated
28: -- with the line.
29: --x_return_status
30: -- FND_API.G_RET_STS_SUCCESS if the API completed successfully.
31: -- FND_API.G_RET_STS_UNEXP_ERROR if an unexpected error occurred.
32: --End of Comments
33: -------------------------------------------------------------------------------
34: PROCEDURE get_timecard_amount (

Line 31: -- FND_API.G_RET_STS_UNEXP_ERROR if an unexpected error occurred.

27: -- Total timecard amount for the PO line; 0 if no contractor is associated
28: -- with the line.
29: --x_return_status
30: -- FND_API.G_RET_STS_SUCCESS if the API completed successfully.
31: -- FND_API.G_RET_STS_UNEXP_ERROR if an unexpected error occurred.
32: --End of Comments
33: -------------------------------------------------------------------------------
34: PROCEDURE get_timecard_amount (
35: p_api_version IN NUMBER,

Line 50: x_return_status := FND_API.G_RET_STS_SUCCESS;

46: IF g_debug_stmt THEN
47: PO_DEBUG.debug_begin(l_log_head);
48: END IF;
49:
50: x_return_status := FND_API.G_RET_STS_SUCCESS;
51:
52: -- Standard API initialization:
53: IF NOT FND_API.compatible_api_call (
54: p_current_version_number => l_api_version,

Line 53: IF NOT FND_API.compatible_api_call (

49:
50: x_return_status := FND_API.G_RET_STS_SUCCESS;
51:
52: -- Standard API initialization:
53: IF NOT FND_API.compatible_api_call (
54: p_current_version_number => l_api_version,
55: p_caller_version_number => p_api_version,
56: p_api_name => l_api_name,
57: p_pkg_name => g_pkg_name ) THEN

Line 58: RAISE FND_API.g_exc_unexpected_error;

54: p_current_version_number => l_api_version,
55: p_caller_version_number => p_api_version,
56: p_api_name => l_api_name,
57: p_pkg_name => g_pkg_name ) THEN
58: RAISE FND_API.g_exc_unexpected_error;
59: END IF;
60:
61: -- Retrieve the contractor associated with this Standard PO Temp Labor line.
62: l_person_id := HR_PO_INFO.get_person_id_for_po_line (

Line 92: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

88: END IF;
89: END IF;
90:
91: EXCEPTION
92: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
93: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
94: IF g_debug_unexp THEN
95: PO_DEBUG.debug_exc(l_log_head, l_progress);
96: END IF;

Line 93: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

89: END IF;
90:
91: EXCEPTION
92: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
93: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
94: IF g_debug_unexp THEN
95: PO_DEBUG.debug_exc(l_log_head, l_progress);
96: END IF;
97: WHEN OTHERS THEN

Line 98: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

94: IF g_debug_unexp THEN
95: PO_DEBUG.debug_exc(l_log_head, l_progress);
96: END IF;
97: WHEN OTHERS THEN
98: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
99: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name);
100: IF g_debug_unexp THEN
101: PO_DEBUG.debug_exc(l_log_head, l_progress);
102: END IF;

Line 131: -- FND_API.G_RET_STS_SUCCESS if the API completed successfully.

127: --OUT:
128: --x_timecard_exists
129: -- TRUE if there are timecards matching the given conditions, FALSE otherwise.
130: --x_return_status
131: -- FND_API.G_RET_STS_SUCCESS if the API completed successfully.
132: -- FND_API.G_RET_STS_UNEXP_ERROR if an unexpected error occurred.
133: --End of Comments
134: -------------------------------------------------------------------------------
135: PROCEDURE check_timecard_exists (

Line 132: -- FND_API.G_RET_STS_UNEXP_ERROR if an unexpected error occurred.

128: --x_timecard_exists
129: -- TRUE if there are timecards matching the given conditions, FALSE otherwise.
130: --x_return_status
131: -- FND_API.G_RET_STS_SUCCESS if the API completed successfully.
132: -- FND_API.G_RET_STS_UNEXP_ERROR if an unexpected error occurred.
133: --End of Comments
134: -------------------------------------------------------------------------------
135: PROCEDURE check_timecard_exists (
136: p_api_version IN NUMBER,

Line 152: x_return_status := FND_API.G_RET_STS_SUCCESS;

148: IF g_debug_stmt THEN
149: PO_DEBUG.debug_begin(l_log_head);
150: END IF;
151:
152: x_return_status := FND_API.G_RET_STS_SUCCESS;
153:
154: -- Standard API initialization:
155: IF NOT FND_API.compatible_api_call (
156: p_current_version_number => l_api_version,

Line 155: IF NOT FND_API.compatible_api_call (

151:
152: x_return_status := FND_API.G_RET_STS_SUCCESS;
153:
154: -- Standard API initialization:
155: IF NOT FND_API.compatible_api_call (
156: p_current_version_number => l_api_version,
157: p_caller_version_number => p_api_version,
158: p_api_name => l_api_name,
159: p_pkg_name => g_pkg_name ) THEN

Line 160: RAISE FND_API.g_exc_unexpected_error;

156: p_current_version_number => l_api_version,
157: p_caller_version_number => p_api_version,
158: p_api_name => l_api_name,
159: p_pkg_name => g_pkg_name ) THEN
160: RAISE FND_API.g_exc_unexpected_error;
161: END IF;
162:
163: IF g_debug_stmt THEN
164: PO_DEBUG.debug_stmt(l_log_head, l_progress,

Line 201: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

197: END IF;
198: END IF;
199:
200: EXCEPTION
201: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
202: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
203: IF g_debug_unexp THEN
204: PO_DEBUG.debug_exc(l_log_head, l_progress);
205: END IF;

Line 202: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

198: END IF;
199:
200: EXCEPTION
201: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
202: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
203: IF g_debug_unexp THEN
204: PO_DEBUG.debug_exc(l_log_head, l_progress);
205: END IF;
206: WHEN OTHERS THEN

Line 207: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

203: IF g_debug_unexp THEN
204: PO_DEBUG.debug_exc(l_log_head, l_progress);
205: END IF;
206: WHEN OTHERS THEN
207: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
208: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name);
209: IF g_debug_unexp THEN
210: PO_DEBUG.debug_exc(l_log_head, l_progress);
211: END IF;

Line 341: -- FND_API.G_RET_STS_SUCCESS if the API completed successfully.

337: --x_amount
338: -- Total timecard amount for the PO line project /task; 0 if no contractor is associated
339: -- with the line.
340: --x_return_status
341: -- FND_API.G_RET_STS_SUCCESS if the API completed successfully.
342: -- FND_API.G_RET_STS_UNEXP_ERROR if an unexpected error occurred.
343: --End of Comments
344: -------------------------------------------------------------------------------
345: PROCEDURE get_pa_timecard_amount (

Line 342: -- FND_API.G_RET_STS_UNEXP_ERROR if an unexpected error occurred.

338: -- Total timecard amount for the PO line project /task; 0 if no contractor is associated
339: -- with the line.
340: --x_return_status
341: -- FND_API.G_RET_STS_SUCCESS if the API completed successfully.
342: -- FND_API.G_RET_STS_UNEXP_ERROR if an unexpected error occurred.
343: --End of Comments
344: -------------------------------------------------------------------------------
345: PROCEDURE get_pa_timecard_amount (
346: p_api_version IN NUMBER,

Line 363: x_return_status := FND_API.G_RET_STS_SUCCESS;

359: IF g_debug_stmt THEN
360: PO_DEBUG.debug_begin(l_log_head);
361: END IF;
362:
363: x_return_status := FND_API.G_RET_STS_SUCCESS;
364:
365: -- Standard API initialization:
366: IF NOT FND_API.compatible_api_call (
367: p_current_version_number => l_api_version,

Line 366: IF NOT FND_API.compatible_api_call (

362:
363: x_return_status := FND_API.G_RET_STS_SUCCESS;
364:
365: -- Standard API initialization:
366: IF NOT FND_API.compatible_api_call (
367: p_current_version_number => l_api_version,
368: p_caller_version_number => p_api_version,
369: p_api_name => l_api_name,
370: p_pkg_name => g_pkg_name ) THEN

Line 371: RAISE FND_API.g_exc_unexpected_error;

367: p_current_version_number => l_api_version,
368: p_caller_version_number => p_api_version,
369: p_api_name => l_api_name,
370: p_pkg_name => g_pkg_name ) THEN
371: RAISE FND_API.g_exc_unexpected_error;
372: END IF;
373:
374: -- Retrieve the contractor associated with this Standard PO Temp Labor line.
375: l_person_id := HR_PO_INFO.get_person_id_for_po_line (

Line 414: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

410: END IF;
411: END IF;
412:
413: EXCEPTION
414: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
415: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
416: IF g_debug_unexp THEN
417: PO_DEBUG.debug_exc(l_log_head, l_progress);
418: END IF;

Line 415: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

411: END IF;
412:
413: EXCEPTION
414: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
415: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
416: IF g_debug_unexp THEN
417: PO_DEBUG.debug_exc(l_log_head, l_progress);
418: END IF;
419: WHEN OTHERS THEN

Line 420: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

416: IF g_debug_unexp THEN
417: PO_DEBUG.debug_exc(l_log_head, l_progress);
418: END IF;
419: WHEN OTHERS THEN
420: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
421: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name);
422: IF g_debug_unexp THEN
423: PO_DEBUG.debug_exc(l_log_head, l_progress);
424: END IF;