DBA Data[Home] [Help]

APPS.AS_MC_PKG dependencies on FND_CURRENCY

Line 915: l_formatted_amount := to_char(p_amount,FND_CURRENCY.GET_FORMAT_MASK(p_currency_code,p_length));

911: BEGIN
912: IF (p_length <= 0) OR (p_length < length(to_char(p_amount))) THEN
913: RETURN NULL;
914: END IF;
915: l_formatted_amount := to_char(p_amount,FND_CURRENCY.GET_FORMAT_MASK(p_currency_code,p_length));
916: RETURN l_formatted_amount;
917: END format_amount;
918:
919: -- Start of Comments

Line 948: l_mask := FND_CURRENCY.GET_FORMAT_MASK(p_currency_code,l_length);

944: l_length NUMBER;
945: l_mask VARCHAR2(2000);
946: BEGIN
947: l_length := LENGTH(p_amount) * 2;
948: l_mask := FND_CURRENCY.GET_FORMAT_MASK(p_currency_code,l_length);
949: BEGIN
950: l_unformatted_num := to_number(p_amount);
951: l_unformatted_num := to_number(to_char(l_unformatted_num,l_mask),l_mask);
952: EXCEPTION