DBA Data[Home] [Help]

APPS.AS_MC_PKG dependencies on AS_MC_PKG

Line 1: PACKAGE BODY AS_MC_PKG AS

1: PACKAGE BODY AS_MC_PKG AS
2: /* $Header: asxmcmcb.pls 115.10 2002/12/13 11:01:06 nkamble ship $ */
3: -- Package
4: -- AS_MC_PKG
5: --

Line 4: -- AS_MC_PKG

1: PACKAGE BODY AS_MC_PKG AS
2: /* $Header: asxmcmcb.pls 115.10 2002/12/13 11:01:06 nkamble ship $ */
3: -- Package
4: -- AS_MC_PKG
5: --
6: -- PURPOSE
7: -- Creates package body for multi-currency api
8: -- HISTORY

Line 1005: -- as_mc_pkg.INVALID_DAILY_CONVERSION_TYPE

1001: -- Note :
1002: -- The possible exceptions generated from this procedure are
1003: -- gl_currency_api.NO_RATE
1004: -- gl_currency_api.INVALID_CURRENCY
1005: -- as_mc_pkg.INVALID_DAILY_CONVERSION_TYPE
1006: -- End of Comments
1007: --
1008: PROCEDURE convert_group_amounts_daily (
1009: p_from_currency IN VARCHAR2,

Line 1025: p_out_amount1 := AS_MC_PKG.convert_amount_daily

1021: p_out_amount5 OUT NOCOPY NUMBER) IS
1022: BEGIN
1023:
1024: if p_amount1 is not NULL then
1025: p_out_amount1 := AS_MC_PKG.convert_amount_daily
1026: (p_from_currency,
1027: p_to_currency,
1028: p_conversion_date,
1029: p_amount1);

Line 1033: p_out_amount2 := AS_MC_PKG.convert_amount_daily

1029: p_amount1);
1030: end if;
1031:
1032: if p_amount2 is not NULL then
1033: p_out_amount2 := AS_MC_PKG.convert_amount_daily
1034: (p_from_currency,
1035: p_to_currency,
1036: p_conversion_date,
1037: p_amount2);

Line 1041: p_out_amount3 := AS_MC_PKG.convert_amount_daily

1037: p_amount2);
1038: end if;
1039:
1040: if p_amount3 is not NULL then
1041: p_out_amount3 := AS_MC_PKG.convert_amount_daily
1042: (p_from_currency,
1043: p_to_currency,
1044: p_conversion_date,
1045: p_amount3);

Line 1049: p_out_amount4 := AS_MC_PKG.convert_amount_daily

1045: p_amount3);
1046: end if;
1047:
1048: if p_amount4 is not NULL then
1049: p_out_amount4 := AS_MC_PKG.convert_amount_daily
1050: (p_from_currency,
1051: p_to_currency,
1052: p_conversion_date,
1053: p_amount4);

Line 1057: p_out_amount5 := AS_MC_PKG.convert_amount_daily

1053: p_amount4);
1054: end if;
1055:
1056: if p_amount5 is not NULL then
1057: p_out_amount5 := AS_MC_PKG.convert_amount_daily
1058: (p_from_currency,
1059: p_to_currency,
1060: p_conversion_date,
1061: p_amount5);

Line 1066: END AS_MC_PKG;

1062: end if;
1063:
1064: END convert_group_amounts_daily;
1065:
1066: END AS_MC_PKG;