DBA Data[Home] [Help]

APPS.PO_HXC_INTERFACE_PVT dependencies on STANDARD

Line 20: -- Check whether the given standard PO header includes any least one rate

16: -- None.
17: --Locks:
18: -- None.
19: --Function:
20: -- Check whether the given standard PO header includes any least one rate
21: -- based line or the given line is rate based. Only rate based line can
22: -- be associated with timecard. There is no need to check OTL timecards
23: -- for non-rate-based line.
24: --Parameters:

Line 33: -- TRUE if the given standard PO header or line meets conditions, FALSE otherwise.

29: --p_field_value
30: -- Identifier of the header/line to check
31: --OUT:
32: --x_line_rate_based
33: -- TRUE if the given standard PO header or line meets conditions, FALSE otherwise.
34: --x_return_status
35: -- FND_API.G_RET_STS_SUCCESS if the API completed successfully.
36: -- FND_API.G_RET_STS_UNEXP_ERROR if an unexpected error occurred.
37: --End of Comments

Line 59: -- Standard API initialization:

55: END IF;
56:
57: x_return_status := FND_API.G_RET_STS_SUCCESS;
58:
59: -- Standard API initialization:
60: IF NOT FND_API.compatible_api_call (
61: p_current_version_number => l_api_version,
62: p_caller_version_number => p_api_version,
63: p_api_name => l_api_name,

Line 145: -- Identifier of the Standard PO line

141: -- timecards associated with the given PO line.
142: --Parameters:
143: --IN:
144: --p_po_line_id
145: -- Identifier of the Standard PO line
146: --OUT:
147: --x_amount
148: -- Total timecard amount for the PO line; 0 if no contractor is associated
149: -- with the line.

Line 179: -- Standard API initialization:

175: END IF;
176:
177: x_return_status := FND_API.G_RET_STS_SUCCESS;
178:
179: -- Standard API initialization:
180: IF NOT FND_API.compatible_api_call (
181: p_current_version_number => l_api_version,
182: p_caller_version_number => p_api_version,
183: p_api_name => l_api_name,

Line 202: -- Retrieve the contractor associated with this Standard PO Temp Labor line.

198: IF (l_line_rate_based <> TRUE) THEN
199: x_amount := 0;
200: ELSE
201:
202: -- Retrieve the contractor associated with this Standard PO Temp Labor line.
203: l_person_id := HR_PO_INFO.get_person_id_for_po_line (
204: p_po_line_id => p_po_line_id );
205:
206: IF g_debug_stmt THEN

Line 260: -- the given standard PO header or line.

256: --Locks:
257: -- None.
258: --Function:
259: -- Calls an OTL API to check whether there are any timecards associated with
260: -- the given standard PO header or line.
261: --Parameters:
262: --IN:
263: --p_field_name
264: -- Use g_field_PO_HEADER_ID or g_field_PO_LINE_ID.

Line 304: -- Standard API initialization:

300: END IF;
301:
302: x_return_status := FND_API.G_RET_STS_SUCCESS;
303:
304: -- Standard API initialization:
305: IF NOT FND_API.compatible_api_call (
306: p_current_version_number => l_api_version,
307: p_caller_version_number => p_api_version,
308: p_api_name => l_api_name,

Line 433: -- Identifier of the Standard PO line:

429: -- against Contingent Worker and Po Line Id.
430: --Parameters:
431: --IN:
432: --po_line_id
433: -- Identifier of the Standard PO line:
434: --p_person_id
435: -- Identifier of the Contingnet worker:
436: --OUT:
437: -- 'True'/'False'

Line 497: -- Identifier of the Standard PO line:

493: -- timecards associated with the given PO line, project and task
494: --Parameters:
495: --IN:
496: --p_po_line_id
497: -- Identifier of the Standard PO line:
498: --p_project_id
499: -- Identifier of the project on the PO line:
500: --p_task_id
501: -- Identifier of the task on the Standard PO line

Line 501: -- Identifier of the task on the Standard PO line

497: -- Identifier of the Standard PO line:
498: --p_project_id
499: -- Identifier of the project on the PO line:
500: --p_task_id
501: -- Identifier of the task on the Standard PO line
502: --OUT:
503: --x_amount
504: -- Total timecard amount for the PO line project /task; 0 if no contractor is associated
505: -- with the line.

Line 537: -- Standard API initialization:

533: END IF;
534:
535: x_return_status := FND_API.G_RET_STS_SUCCESS;
536:
537: -- Standard API initialization:
538: IF NOT FND_API.compatible_api_call (
539: p_current_version_number => l_api_version,
540: p_caller_version_number => p_api_version,
541: p_api_name => l_api_name,

Line 561: -- Retrieve the contractor associated with this Standard PO Temp Labor line.

557: IF (l_line_rate_based <> TRUE) THEN
558: x_amount := 0;
559: ELSE
560:
561: -- Retrieve the contractor associated with this Standard PO Temp Labor line.
562: l_person_id := HR_PO_INFO.get_person_id_for_po_line (
563: p_po_line_id => p_po_line_id );
564:
565: IF g_debug_stmt THEN