DBA Data[Home] [Help]

APPS.INV_DECIMALS_PUB dependencies on FND_PROFILE

Line 377: fnd_profile.get('INV_DETECT_TRUNCATION',l_decimal_profile);

373:
374:
375: -- check if the profile detect_truncation is set. If yes, then make sure primary qty
376: -- also does not break decimal precision rules.
377: fnd_profile.get('INV_DETECT_TRUNCATION',l_decimal_profile);
378:
379: if ( l_decimal_profile = '1' ) then -- '1'= yes, '2' = no
380:
381: if ( x_primary_quantity <> ROUND(x_primary_quantity,g_max_decimal_digits) ) then

Line 564: fnd_profile.get('INV_DETECT_TRUNCATION',l_decimal_profile);

560:
561:
562: -- check if the profile detect_truncation is set. If yes, then make sure primary qty
563: -- also does not break decimal precision rules.
564: fnd_profile.get('INV_DETECT_TRUNCATION',l_decimal_profile);
565:
566: if ( l_decimal_profile = '1' ) then -- '1'= yes, '2' = no
567:
568: if ( x_primary_quantity <> ROUND(x_primary_quantity,l_max_decimal_digits) ) then