DBA Data[Home] [Help]

APPS.PO_ENCUMBRANCE_PREPROCESSING dependencies on PO_PARTIAL_FUNDING_PKG

Line 6033: IF (po_partial_funding_pkg.is_CLM_Enabled = 'Y'

6029: END IF; -- doc can have a backing PPO
6030:
6031: /* <> */
6032: -- Update the Funded Value for the Backing Requisitions with Last Implemented Req's Funded Value
6033: IF (po_partial_funding_pkg.is_CLM_Enabled = 'Y'
6034: and p_doc_subtype = g_doc_subtype_STANDARD
6035: and p_action = g_action_RESERVE ) Then
6036:
6037: l_progress := '130';

Line 6187: If (po_partial_funding_pkg.is_CLM_Enabled = 'Y') Then

6183: END IF;
6184:
6185: /* <> */
6186: l_progress := '015';
6187: If (po_partial_funding_pkg.is_CLM_Enabled = 'Y') Then
6188: IF g_debug_stmt THEN
6189: PO_DEBUG.debug_stmt(l_log_head,l_progress,'CLM Installed. Calling UPDATE_CLM_INTIAL_AMOUNTS.');
6190: END IF;
6191: UPDATE_CLM_INTIAL_AMOUNTS();

Line 6402: If po_partial_funding_pkg.is_CLM_Enabled = 'Y' Then

6398: )
6399: ;
6400:
6401: /* <> */
6402: If po_partial_funding_pkg.is_CLM_Enabled = 'Y' Then
6403: -- Bug#13503748 change l_progress := '065' to 95;
6404: l_progress := '095';
6405: IF g_debug_stmt THEN
6406: PO_DEBUG.debug_stmt(l_log_head,l_progress,'Calling UPDATE_CLM_FINAL_AMOUNTS');

Line 8331: /*If (po_partial_funding_pkg.is_clm_enabled = 'Y' and p_action = g_action_RESERVE) Then

8327: -- Filter the CLM Distributions with No change in their Funded Value for Reserve Action
8328: /*Bug15871378 - Here the distributions having zero value are marked as send_to_gl_flag = N Becauseof this,
8329: the dist later gets marked as encumbered N, which leads to the shipment being marked as encumbered N.
8330: This need not be done any longer as FV now handles zero dollar values.Commenting out the update*/
8331: /*If (po_partial_funding_pkg.is_clm_enabled = 'Y' and p_action = g_action_RESERVE) Then
8332: l_progress := '105';
8333: IF g_debug_stmt THEN
8334: PO_DEBUG.debug_stmt(l_log_head,l_progress,'CLM Installed and Reserve Action. Setting Send to GL Flag as N for Zero Amounts.');
8335: End If;