DBA Data[Home] [Help]

APPS.PO_WF_PO_CHARGE_ACC dependencies on PO_WF_BUILD_ACCOUNT_INIT

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

1343: -- PO Accounts and second time to generate the DESTINATION accounts. The
1344: -- calling program specifies the flow type in the WF item attribute
1345: -- called ACCOUNT_GENERATION_FLOW_TYPE.
1346: -- The flow could take either of the following 2 values:
1347: -- 1. PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts (PO_ACCOUNTS)
1348: -- 2. PO_WF_BUILD_ACCOUNT_INIT.g_destination_accounts (DESTINATION_ACCOUNTS)
1349: -- This function determines if the flow type specified by the calling
1350: -- program is for the Destination Accounts or not.
1351: --Parameters:

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

1344: -- calling program specifies the flow type in the WF item attribute
1345: -- called ACCOUNT_GENERATION_FLOW_TYPE.
1346: -- The flow could take either of the following 2 values:
1347: -- 1. PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts (PO_ACCOUNTS)
1348: -- 2. PO_WF_BUILD_ACCOUNT_INIT.g_destination_accounts (DESTINATION_ACCOUNTS)
1349: -- This function determines if the flow type specified by the calling
1350: -- program is for the Destination Accounts or not.
1351: --Parameters:
1352: --IN:

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

1362: -- out what it is exactly being compared, we would have to go to the 'Node
1363: -- Attribute' tab of that activity and inspect the item attributes. Also,
1364: -- we would have had to hard-code the value being compared there. In this
1365: -- function, we can use the global variable
1366: -- 'PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts' instead of the hard coded value.
1367: --End of Comments
1368: ---------------------------------------------------------------------------
1369: PROCEDURE is_dest_accounts_flow_type
1370: (

Line 1399: l_account_gen_flow_type = PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts)

1395:
1396: l_progress := '030';
1397:
1398: IF (l_account_gen_flow_type IS NULL OR
1399: l_account_gen_flow_type = PO_WF_BUILD_ACCOUNT_INIT.g_po_accounts)
1400: THEN
1401: result := WF_ENGINE.eng_completed || ':N';
1402: ELSE
1403: result := WF_ENGINE.eng_completed || ':Y';