DBA Data[Home] [Help]

APPS.CSD_RETURNS_BI_UTIL dependencies on FND_PROFILE

Line 79: l_conversion_type := FND_PROFILE.value('CSD_CURRENCY_CONVERSION_TYPE');

75: l_conversion_type VARCHAR2(30);
76: l_max_roll_days NUMBER;
77: BEGIN
78: -- Check if conversion type profile is set. If not then raise error.
79: l_conversion_type := FND_PROFILE.value('CSD_CURRENCY_CONVERSION_TYPE');
80: IF (l_conversion_type IS NULL) THEN
81: l_conversion_type := 'User';
82: END IF;
83:

Line 85: l_max_roll_days := FND_PROFILE.value('CSD_CURRENCY_MAX_ROLL');

81: l_conversion_type := 'User';
82: END IF;
83:
84: --Get the max roll days from the profile.
85: l_max_roll_days := FND_PROFILE.value('CSD_CURRENCY_MAX_ROLL');
86:
87:
88: if (p_amount is null) then
89: l_conv_amount := p_error_val;