DBA Data[Home] [Help]

APPS.PO_PROJECT_DETAILS_SV dependencies on PJM_PROJECT

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

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

Line 226: x_project_number := PJM_PROJECT.all_proj_idtonum

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

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

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

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

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

Line 343: PJM_PROJECT.validate_proj_references

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

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

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

Line 393: -- PJM_PROJECT.g_validate_success

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

Line 399: RETURN PJM_PROJECT.g_validate_success;

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

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

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

Line 414: -- PJM_PROJECT.g_validate_warning

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

Line 420: RETURN PJM_PROJECT.g_validate_warning;

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

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

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

Line 435: -- PJM_PROJECT.g_validate_failure

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

Line 441: RETURN PJM_PROJECT.g_validate_failure;

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