DBA Data[Home] [Help]

APPS.FND_CURRENCY_CACHE dependencies on FND_PROFILE

Line 192: profl_val:= fnd_profile.value_specific('CURRENCY:THOUSANDS_SEPARATOR');

188:
189: /* process the arguments, defaulting in profile values if necessary*/
190:
191: if(disp_grp_sep is NULL) then
192: profl_val:= fnd_profile.value_specific('CURRENCY:THOUSANDS_SEPARATOR');
193: if (profl_val = 'Y') then
194: x_disp_grp_sep := TRUE;
195: else
196: x_disp_grp_sep := FALSE;

Line 203: profl_val := fnd_profile.value_specific('CURRENCY:NEGATIVE_FORMAT');

199: x_disp_grp_sep := disp_grp_sep;
200: end if;
201:
202: if(neg_format is NULL) then
203: profl_val := fnd_profile.value_specific('CURRENCY:NEGATIVE_FORMAT');
204: if(profl_val = '0' or profl_val = '1' or profl_val = '2') then
205: x_neg_format := '';
206: elsif (profl_val <> '4') then /* '3' or default gives leading sign*/
207: x_neg_format := '-XXX';

Line 216: profl_val := fnd_profile.value_specific('CURRENCY:POSITIVE_FORMAT');

212: x_neg_format := neg_format;
213: end if;
214:
215: if(pos_format is NULL) then
216: profl_val := fnd_profile.value_specific('CURRENCY:POSITIVE_FORMAT');
217: if(profl_val = '1') then
218: x_pos_format := '+XXX';
219: elsif (profl_val = '2') then
220: x_pos_format := 'XXX+';