DBA Data[Home] [Help]

APPS.OE_BLANKET_FORM_CONTROL dependencies on FND_CURRENCY

Line 2377: FND_CURRENCY.Get_Info(p_currency_code, X_precision,

2373: -- Originally we use to format based on the hardcoded precision
2374: -- , now we have changed to get the precision based on the QP profile
2375: -- else we will hard coded to 6 digits.
2376: -- This new format will affect all the amounts fields on BSA UI.
2377: FND_CURRENCY.Get_Info(p_currency_code, X_precision,
2378: X_Ext_precision, X_min_acct_unit);
2379: fnd_profile.get('QP_UNIT_PRICE_PRECISION_TYPE', l_precision_type);
2380: IF (l_precision_type = 'EXTENDED') THEN
2381: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,

Line 2381: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,

2377: FND_CURRENCY.Get_Info(p_currency_code, X_precision,
2378: X_Ext_precision, X_min_acct_unit);
2379: fnd_profile.get('QP_UNIT_PRICE_PRECISION_TYPE', l_precision_type);
2380: IF (l_precision_type = 'EXTENDED') THEN
2381: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,
2382: X_Ext_precision,X_min_acct_unit, TRUE);
2383: ELSE
2384: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,
2385: X_precision,X_min_acct_unit, TRUE);

Line 2384: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,

2380: IF (l_precision_type = 'EXTENDED') THEN
2381: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,
2382: X_Ext_precision,X_min_acct_unit, TRUE);
2383: ELSE
2384: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,
2385: X_precision,X_min_acct_unit, TRUE);
2386: END IF;
2387: RETURN l_format_mask;
2388: