DBA Data[Home] [Help]

APPS.PO_SUPPLY dependencies on PO_CLM_INTG_GRP

Line 1122: l_is_clm_po := po_clm_intg_grp.is_clm_po(p_po_header_id => NULL,

1118:
1119: l_is_clm_po := 'N';
1120: l_partial_funded_flag := 'N';
1121:
1122: l_is_clm_po := po_clm_intg_grp.is_clm_po(p_po_header_id => NULL,
1123: p_po_line_id => NULL,
1124: p_po_line_location_id => l_line_loc_id,
1125: p_po_distribution_id => NULL);
1126:

Line 1128: po_clm_intg_grp.get_funding_info(p_po_header_id => NULL,

1124: p_po_line_location_id => l_line_loc_id,
1125: p_po_distribution_id => NULL);
1126:
1127: IF l_is_clm_po = 'Y' THEN
1128: po_clm_intg_grp.get_funding_info(p_po_header_id => NULL,
1129: p_po_line_id => NULL,
1130: p_line_location_id => l_line_loc_id,
1131: p_po_distribution_id => NULL,
1132: x_distribution_type => l_distribution_type,

Line 2070: IF PO_CLM_INTG_GRP.IS_CLM_INSTALLED = 'Y' THEN

2066: IF (PO_LOG.d_stmt) THEN
2067: PO_LOG.stmt(d_module, d_progress, 'Check: Excluded From Planning');
2068: END IF;
2069: --#2:Should perform this Check only when CLM is installed
2070: IF PO_CLM_INTG_GRP.IS_CLM_INSTALLED = 'Y' THEN
2071: d_progress := 64;
2072: IF (PO_LOG.d_stmt) THEN
2073: PO_LOG.stmt(d_module, d_progress, 'CLM is installed.');
2074: END IF;

Line 2076: l_is_clm_document := PO_CLM_INTG_GRP.IS_CLM_DOCUMENT(p_doc_type => 'PO',p_document_id => c_sup2.po_header_id);

2072: IF (PO_LOG.d_stmt) THEN
2073: PO_LOG.stmt(d_module, d_progress, 'CLM is installed.');
2074: END IF;
2075: IF c_sup2.po_header_id IS NOT NULL THEN
2076: l_is_clm_document := PO_CLM_INTG_GRP.IS_CLM_DOCUMENT(p_doc_type => 'PO',p_document_id => c_sup2.po_header_id);
2077: ELSE
2078: IF c_sup2.req_header_id IS NOT NULL THEN
2079: l_is_clm_document := PO_CLM_INTG_GRP.IS_CLM_DOCUMENT(p_doc_type => 'REQUISITION',p_document_id => c_sup2.req_header_id);
2080: END IF;

Line 2079: l_is_clm_document := PO_CLM_INTG_GRP.IS_CLM_DOCUMENT(p_doc_type => 'REQUISITION',p_document_id => c_sup2.req_header_id);

2075: IF c_sup2.po_header_id IS NOT NULL THEN
2076: l_is_clm_document := PO_CLM_INTG_GRP.IS_CLM_DOCUMENT(p_doc_type => 'PO',p_document_id => c_sup2.po_header_id);
2077: ELSE
2078: IF c_sup2.req_header_id IS NOT NULL THEN
2079: l_is_clm_document := PO_CLM_INTG_GRP.IS_CLM_DOCUMENT(p_doc_type => 'REQUISITION',p_document_id => c_sup2.req_header_id);
2080: END IF;
2081: --#3: When Both REQ Header Id and PO Header Id or Null, Need not modify anything
2082: END IF;
2083: d_progress := 66;