DBA Data[Home] [Help]

APPS.PO_WF_PO_CHARGE_ACC dependencies on PO_WF_BUILD_ACCOUNT_INIT

Line 1362: -- 1. PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts (PO_ACCOUNTS)

1358: -- PO Accounts and second time to generate the DESTINATION accounts. The
1359: -- calling program specifies the flow type in the WF item attribute
1360: -- called ACCOUNT_GENERATION_FLOW_TYPE.
1361: -- The flow could take either of the following 2 values:
1362: -- 1. PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts (PO_ACCOUNTS)
1363: -- 2. PO_WF_BUILD_ACCOUNT_INIT.g_destination_accounts (DESTINATION_ACCOUNTS)
1364: -- This function determines if the flow type specified by the calling
1365: -- program is for the Destination Accounts or not.
1366: --Parameters:

Line 1363: -- 2. PO_WF_BUILD_ACCOUNT_INIT.g_destination_accounts (DESTINATION_ACCOUNTS)

1359: -- calling program specifies the flow type in the WF item attribute
1360: -- called ACCOUNT_GENERATION_FLOW_TYPE.
1361: -- The flow could take either of the following 2 values:
1362: -- 1. PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts (PO_ACCOUNTS)
1363: -- 2. PO_WF_BUILD_ACCOUNT_INIT.g_destination_accounts (DESTINATION_ACCOUNTS)
1364: -- This function determines if the flow type specified by the calling
1365: -- program is for the Destination Accounts or not.
1366: --Parameters:
1367: --IN:

Line 1381: -- 'PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts' instead of the hard coded value.

1377: -- out what it is exactly being compared, we would have to go to the 'Node
1378: -- Attribute' tab of that activity and inspect the item attributes. Also,
1379: -- we would have had to hard-code the value being compared there. In this
1380: -- function, we can use the global variable
1381: -- 'PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts' instead of the hard coded value.
1382: --End of Comments
1383: ---------------------------------------------------------------------------
1384: PROCEDURE is_dest_accounts_flow_type
1385: (

Line 1414: l_account_gen_flow_type = PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts)

1410:
1411: l_progress := '030';
1412:
1413: IF (l_account_gen_flow_type IS NULL OR
1414: l_account_gen_flow_type = PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts)
1415: THEN
1416: result := WF_ENGINE.eng_completed || ':N';
1417: ELSE
1418: result := WF_ENGINE.eng_completed || ':Y';

Line 2317: IF (l_account_gen_flow_type IS NULL OR l_account_gen_flow_type = PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts) THEN

2313: itemkey => itemkey,
2314: aname => 'ACCOUNT_GENERATION_FLOW_TYPE');
2315:
2316:
2317: IF (l_account_gen_flow_type IS NULL OR l_account_gen_flow_type = PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts) THEN
2318: l_coa_id := po_wf_util_pkg.getitemattrtext(
2319: itemtype => itemtype,
2320: itemkey => itemkey,
2321: aname => 'CHART_OF_ACCOUNTS_ID');