DBA Data[Home] [Help]

APPS.OZF_FUND_ADJUSTMENT_PVT dependencies on FND_PROFILE

Line 7: g_recal_flag CONSTANT VARCHAR2(1) := NVL(fnd_profile.value('OZF_BUDGET_ADJ_ALLOW_RECAL'),'N');

3:
4: g_pkg_name CONSTANT VARCHAR2 (30) := 'OZF_Fund_Adjustment_PVT';
5: g_cons_fund_mode CONSTANT VARCHAR2 (30) := 'WORKFLOW';
6: G_DEBUG BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
7: g_recal_flag CONSTANT VARCHAR2(1) := NVL(fnd_profile.value('OZF_BUDGET_ADJ_ALLOW_RECAL'),'N');
8: G_TPM_PROCESS_ENABLED VARCHAR2 (1) := NVL(fnd_profile.VALUE ('OZF_TPM_PROCESS_ENABLED'),'N');
9:
10: /* =========================================================
11: --tbl_type to hold the object

Line 8: G_TPM_PROCESS_ENABLED VARCHAR2 (1) := NVL(fnd_profile.VALUE ('OZF_TPM_PROCESS_ENABLED'),'N');

4: g_pkg_name CONSTANT VARCHAR2 (30) := 'OZF_Fund_Adjustment_PVT';
5: g_cons_fund_mode CONSTANT VARCHAR2 (30) := 'WORKFLOW';
6: G_DEBUG BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
7: g_recal_flag CONSTANT VARCHAR2(1) := NVL(fnd_profile.value('OZF_BUDGET_ADJ_ALLOW_RECAL'),'N');
8: G_TPM_PROCESS_ENABLED VARCHAR2 (1) := NVL(fnd_profile.VALUE ('OZF_TPM_PROCESS_ENABLED'),'N');
9:
10: /* =========================================================
11: --tbl_type to hold the object
12: --This is a private rec type to be used by this API only

Line 1508: l_conversion_type := fnd_profile.VALUE (l_conversion_type_profile);

1504: BEGIN
1505: -- Get the currency conversion type from profile option
1506: --Added for bug 7030415
1507: IF p_conv_type = FND_API.G_MISS_CHAR OR p_conv_type IS NULL THEN
1508: l_conversion_type := fnd_profile.VALUE (l_conversion_type_profile);
1509: ELSE
1510: l_conversion_type := p_conv_type;
1511: END IF;
1512: -- Call the proper GL API to convert the amount.