DBA Data[Home] [Help]

APPS.IEX_UTILITIES dependencies on FND_PROFILE

Line 1678: l_rate_type := nvl(fnd_profile.value('IEX_COLLECTIONS_RATE_TYPE'), 'Corporate');

1674: l_site_use_id := p_site_use_id;
1675: l_min_dunning_amount := 0;
1676: l_min_dunning_invoice_amount := 0;
1677:
1678: l_rate_type := nvl(fnd_profile.value('IEX_COLLECTIONS_RATE_TYPE'), 'Corporate');
1679:
1680: --Start bug 7026222 gnramasa 20th July 08
1681: l_check_dunn_profile := nvl(fnd_profile.value('IEX_CHK_DUNN_AT_FUNC_CURR'), 'Y');
1682: --If the profile 'IEX: Check Dunning amount at function currency' is set to 'Yes' then the current functionality will continue

Line 1681: l_check_dunn_profile := nvl(fnd_profile.value('IEX_CHK_DUNN_AT_FUNC_CURR'), 'Y');

1677:
1678: l_rate_type := nvl(fnd_profile.value('IEX_COLLECTIONS_RATE_TYPE'), 'Corporate');
1679:
1680: --Start bug 7026222 gnramasa 20th July 08
1681: l_check_dunn_profile := nvl(fnd_profile.value('IEX_CHK_DUNN_AT_FUNC_CURR'), 'Y');
1682: --If the profile 'IEX: Check Dunning amount at function currency' is set to 'Yes' then the current functionality will continue
1683: --and if the profile is set to 'No' then we can check amount at currency level. By default the profile value is 'Yes'
1684: if l_check_dunn_profile = 'Y' then
1685: -- determine the min dunning and min dunning invoice amount first

Line 2533: PG_DEBUG := TO_NUMBER(NVL(FND_PROFILE.value('IEX_DEBUG_LEVEL'), '20'));

2529: G_PROGRAM_ID := FND_GLOBAL.Conc_Program_Id;
2530: G_USER_ID := FND_GLOBAL.User_Id;
2531: G_REQUEST_ID := FND_GLOBAL.Conc_Request_Id;
2532:
2533: PG_DEBUG := TO_NUMBER(NVL(FND_PROFILE.value('IEX_DEBUG_LEVEL'), '20'));
2534:
2535: END IEX_UTILITIES;