DBA Data[Home] [Help]

APPS.OE_BLANKET_FORM_CONTROL dependencies on FND_CURRENCY

Line 2366: FND_CURRENCY.Get_Info(p_currency_code, X_precision,

2362: -- Originally we use to format based on the hardcoded precision
2363: -- , now we have changed to get the precision based on the QP profile
2364: -- else we will hard coded to 6 digits.
2365: -- This new format will affect all the amounts fields on BSA UI.
2366: FND_CURRENCY.Get_Info(p_currency_code, X_precision,
2367: X_Ext_precision, X_min_acct_unit);
2368: fnd_profile.get('QP_UNIT_PRICE_PRECISION_TYPE', l_precision_type);
2369: IF (l_precision_type = 'EXTENDED') THEN
2370: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,

Line 2370: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,

2366: FND_CURRENCY.Get_Info(p_currency_code, X_precision,
2367: X_Ext_precision, X_min_acct_unit);
2368: fnd_profile.get('QP_UNIT_PRICE_PRECISION_TYPE', l_precision_type);
2369: IF (l_precision_type = 'EXTENDED') THEN
2370: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,
2371: X_Ext_precision,X_min_acct_unit, TRUE);
2372: ELSE
2373: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,
2374: X_precision,X_min_acct_unit, TRUE);

Line 2373: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,

2369: IF (l_precision_type = 'EXTENDED') THEN
2370: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,
2371: X_Ext_precision,X_min_acct_unit, TRUE);
2372: ELSE
2373: FND_CURRENCY.Build_Format_Mask(l_format_mask, p_field_length,
2374: X_precision,X_min_acct_unit, TRUE);
2375: END IF;
2376: RETURN l_format_mask;
2377: