DBA Data[Home] [Help]

APPS.AMS_ACTMETRIC_PVT dependencies on FND_PROFILE

Line 1656: l_org_id := fnd_profile.value('DEFAULT_ORG_ID');

1652: Ams_Utility_Pvt.Debug_Message(l_full_name||': start');
1653: END IF;
1654:
1655:
1656: l_org_id := fnd_profile.value('DEFAULT_ORG_ID');
1657:
1658: --
1659: -- Initialize message list if p_init_msg_list is set to TRUE.
1660: --

Line 4261: NVL(Fnd_Profile.Value (L_ALLOW_ACTUAL_UPDATE_METR),'N');

4257: (G_CATEGORY_COSTS, G_CATEGORY_REVENUES)
4258: AND l_metric_details_rec.metric_calculation_type IN
4259: ('MANUAL', 'FUNCTION') THEN
4260: l_allow_actual_update :=
4261: NVL(Fnd_Profile.Value (L_ALLOW_ACTUAL_UPDATE_METR),'N');
4262:
4263: --sunkumar 04/30/2003
4264: --added profile option to restrict updation of actuals
4265: IF (l_allow_actual_update = 'N') THEN

Line 4293: NVL(Fnd_Profile.Value (L_ALLOW_ACTUAL_UPDATE_METR),'N');

4289: (G_CATEGORY_COSTS, G_CATEGORY_REVENUES)
4290: AND l_metric_details_rec.metric_calculation_type IN
4291: ('MANUAL', 'FUNCTION') THEN
4292: l_allow_actual_update :=
4293: NVL(Fnd_Profile.Value (L_ALLOW_ACTUAL_UPDATE_METR),'N');
4294:
4295: -- Profile option to restrict updation of actuals.
4296: IF (l_allow_actual_update = 'N') THEN
4297: --object is not active and profile is N hence do not allow update

Line 5034: RETURN Fnd_Profile.Value('AMS_DEFAULT_CURR_CODE');

5030: FUNCTION Default_Func_Currency
5031: RETURN VARCHAR2
5032: IS
5033: BEGIN
5034: RETURN Fnd_Profile.Value('AMS_DEFAULT_CURR_CODE');
5035: -- RETURN 'USD';
5036: END Default_Func_Currency;
5037:
5038: ---------------------------------------------------------------------

Line 5734: l_conversion_type := Fnd_Profile.Value (L_CONVERSION_TYPE_PROFILE);

5730: -- Initialize return status.
5731: x_return_status := Fnd_Api.G_RET_STS_SUCCESS;
5732:
5733: -- Get the currency conversion type from profile option
5734: l_conversion_type := Fnd_Profile.Value (L_CONVERSION_TYPE_PROFILE);
5735:
5736: -- Check if both currencies are identical
5737: IF ( p_from_currency = p_to_currency ) THEN
5738: -- l_denominator := 1;

Line 5842: l_conversion_type := Fnd_Profile.Value (L_CONVERSION_TYPE_PROFILE);

5838: -- Initialize return status.
5839: x_return_status := Fnd_Api.G_RET_STS_SUCCESS;
5840:
5841: -- Get the currency conversion type from profile option
5842: l_conversion_type := Fnd_Profile.Value (L_CONVERSION_TYPE_PROFILE);
5843:
5844: -- Check if both currencies are identical
5845: IF ( p_from_currency <> p_to_currency ) THEN
5846: --

Line 6543: nvl(fnd_profile.value('JTF_PROFILE_DEFAULT_NUM_ROWS'),10);

6539:
6540: -- BUG 3815334: Use profile for max buckets.
6541: -- This is the same profile that DCF uses for report page length.
6542: l_max_bucket_count :=
6543: nvl(fnd_profile.value('JTF_PROFILE_DEFAULT_NUM_ROWS'),10);
6544: IF p_start_date IS NULL
6545: OR p_end_date IS NULL
6546: OR TRUNC(p_start_date) > TRUNC(p_end_date)
6547: OR p_interval_amount IS NULL