DBA Data[Home] [Help]

APPS.PO_PROJECT_DETAILS_SV dependencies on PJM_PROJECT

Line 201: -- PJM function PJM_PROJECT.all_proj_idtonum. Appends to the API message list

197: --Locks:
198: -- None.
199: --Function:
200: -- This is a wrapper gets the project number of the given project ID using the
201: -- PJM function PJM_PROJECT.all_proj_idtonum. Appends to the API message list
202: -- upon error.
203: --Parameters:
204: --IN:
205: --p_project_id

Line 224: x_project_number := PJM_PROJECT.all_proj_idtonum

220: IS
221: BEGIN
222: x_return_status := FND_API.g_ret_sts_success;
223:
224: x_project_number := PJM_PROJECT.all_proj_idtonum
225: (x_project_id => p_project_id);
226:
227: EXCEPTION
228: WHEN NO_DATA_FOUND THEN

Line 253: -- PJM_PROJECT.validate_proj_references. The parameter p_operating_unit gets

249: --Locks:
250: -- None.
251: --Function:
252: -- This is a wrapper that validates the project by calling the PJM API
253: -- PJM_PROJECT.validate_proj_references. The parameter p_operating_unit gets
254: -- defaulted if it is NULL. Appends to the API message list upon error.
255: --Parameters:
256: --IN:
257: --p_inventory_org_id

Line 273: -- Used for any custom validations in PJM_PROJECT_EXT.val_project_references.

269: --p_date2
270: -- Typically the promised date of the PO shipment, and NULL for a Req line.
271: -- This is passed into the PJM API truncated.
272: --p_calling_function
273: -- Used for any custom validations in PJM_PROJECT_EXT.val_project_references.
274: -- Typically, this is a module name like 'POXPOEPO' or 'PDOI'.
275: --OUT:
276: --x_error_code
277: -- Error code returned by PJM API.

Line 341: PJM_PROJECT.validate_proj_references

337: --< NBD TZ/Timestamp FPJ >
338: -- Truncate the timestamped dates. Inside the API they would be used in a
339: -- comparison with effectivity dates that are not timestamped.
340: x_return_code :=
341: PJM_PROJECT.validate_proj_references
342: (x_inventory_org_id => p_inventory_org_id,
343: x_operating_unit => l_pjm_org_id,
344: x_project_id => p_project_id,
345: x_task_id => p_task_id,

Line 389: -- Returns the global package variable PJM_PROJECT.g_validate_success.

385: -- None.
386: --Locks:
387: -- None.
388: --Function:
389: -- Returns the global package variable PJM_PROJECT.g_validate_success.
390: --Returns:
391: -- PJM_PROJECT.g_validate_success
392: --End of Comments
393: --------------------------------------------------------------------------------

Line 391: -- PJM_PROJECT.g_validate_success

387: -- None.
388: --Function:
389: -- Returns the global package variable PJM_PROJECT.g_validate_success.
390: --Returns:
391: -- PJM_PROJECT.g_validate_success
392: --End of Comments
393: --------------------------------------------------------------------------------
394: FUNCTION pjm_validate_success RETURN VARCHAR2
395: IS

Line 397: RETURN PJM_PROJECT.g_validate_success;

393: --------------------------------------------------------------------------------
394: FUNCTION pjm_validate_success RETURN VARCHAR2
395: IS
396: BEGIN
397: RETURN PJM_PROJECT.g_validate_success;
398: END;
399:
400: --------------------------------------------------------------------------------
401: --Start of Comments

Line 410: -- Returns the global package variable PJM_PROJECT.g_validate_warning.

406: -- None.
407: --Locks:
408: -- None.
409: --Function:
410: -- Returns the global package variable PJM_PROJECT.g_validate_warning.
411: --Returns:
412: -- PJM_PROJECT.g_validate_warning
413: --End of Comments
414: --------------------------------------------------------------------------------

Line 412: -- PJM_PROJECT.g_validate_warning

408: -- None.
409: --Function:
410: -- Returns the global package variable PJM_PROJECT.g_validate_warning.
411: --Returns:
412: -- PJM_PROJECT.g_validate_warning
413: --End of Comments
414: --------------------------------------------------------------------------------
415: FUNCTION pjm_validate_warning RETURN VARCHAR2
416: IS

Line 418: RETURN PJM_PROJECT.g_validate_warning;

414: --------------------------------------------------------------------------------
415: FUNCTION pjm_validate_warning RETURN VARCHAR2
416: IS
417: BEGIN
418: RETURN PJM_PROJECT.g_validate_warning;
419: END;
420:
421: --------------------------------------------------------------------------------
422: --Start of Comments

Line 431: -- Returns the global package variable PJM_PROJECT.g_validate_failure.

427: -- None.
428: --Locks:
429: -- None.
430: --Function:
431: -- Returns the global package variable PJM_PROJECT.g_validate_failure.
432: --Returns:
433: -- PJM_PROJECT.g_validate_failure
434: --End of Comments
435: --------------------------------------------------------------------------------

Line 433: -- PJM_PROJECT.g_validate_failure

429: -- None.
430: --Function:
431: -- Returns the global package variable PJM_PROJECT.g_validate_failure.
432: --Returns:
433: -- PJM_PROJECT.g_validate_failure
434: --End of Comments
435: --------------------------------------------------------------------------------
436: FUNCTION pjm_validate_failure RETURN VARCHAR2
437: IS

Line 439: RETURN PJM_PROJECT.g_validate_failure;

435: --------------------------------------------------------------------------------
436: FUNCTION pjm_validate_failure RETURN VARCHAR2
437: IS
438: BEGIN
439: RETURN PJM_PROJECT.g_validate_failure;
440: END;
441:
442: --< Bug 3265539 End >
443: