DBA Data[Home] [Help]

APPS.FII_CURRENCY_API dependencies on FND_PROFILE

Line 108: l_name := fnd_profile.value('BIS_ANNUALIZED_CURDISP_NAME');

104: l_currency_code varchar2(15);
105: l_rate varchar2(30);
106: begin
107:
108: l_name := fnd_profile.value('BIS_ANNUALIZED_CURDISP_NAME');
109: IF l_name is not null THEN
110: return l_name;
111: ELSE
112: l_currency_code := fnd_profile.value('BIS_ANNUALIZED_CURRENCY_CODE');

Line 112: l_currency_code := fnd_profile.value('BIS_ANNUALIZED_CURRENCY_CODE');

108: l_name := fnd_profile.value('BIS_ANNUALIZED_CURDISP_NAME');
109: IF l_name is not null THEN
110: return l_name;
111: ELSE
112: l_currency_code := fnd_profile.value('BIS_ANNUALIZED_CURRENCY_CODE');
113: if l_currency_code is not null then
114: SELECT user_conversion_type
115: into
116: l_rate

Line 118: WHERE conversion_type=fnd_profile.value('BIS_ANNUALIZED_RATE_TYPE');

114: SELECT user_conversion_type
115: into
116: l_rate
117: FROM gl_daily_conversion_types
118: WHERE conversion_type=fnd_profile.value('BIS_ANNUALIZED_RATE_TYPE');
119:
120: fnd_message.set_name('FII','FII_ANNUALIZED_CURR_DISP_NAME');
121: fnd_message.set_token('CURRENCY_CODE',l_currency_code,FALSE);
122: fnd_message.set_token('RATE',l_rate,FALSE);