DBA Data[Home] [Help]

APPS.OKL_FA_AMOUNTS_PVT dependencies on GL_CURRENCY_API

Line 132: l_cost := GL_CURRENCY_API.convert_amount (

128: l_conv_params_rec.currency_conversion_date is null then
129: null;
130: --raise error : currency conversion parameters not available;
131: else
132: l_cost := GL_CURRENCY_API.convert_amount (
133: x_from_currency => l_conv_params_rec.functional_currency_code,
134: x_to_currency => l_conv_params_rec.CONTRACT_CURRENCY_CODE,
135: x_conversion_date => l_conv_params_rec.currency_conversion_date,
136: x_conversion_type => l_conv_params_rec.currency_conversion_type,

Line 138: l_adj_cost := GL_CURRENCY_API.convert_amount (

134: x_to_currency => l_conv_params_rec.CONTRACT_CURRENCY_CODE,
135: x_conversion_date => l_conv_params_rec.currency_conversion_date,
136: x_conversion_type => l_conv_params_rec.currency_conversion_type,
137: x_amount => l_fa_amounts_rec.cost);
138: l_adj_cost := GL_CURRENCY_API.convert_amount (
139: x_from_currency => l_conv_params_rec.functional_currency_code,
140: x_to_currency => l_conv_params_rec.CONTRACT_CURRENCY_CODE,
141: x_conversion_date => l_conv_params_rec.currency_conversion_date,
142: x_conversion_type => l_conv_params_rec.currency_conversion_type,

Line 144: l_original_cost := GL_CURRENCY_API.convert_amount (

140: x_to_currency => l_conv_params_rec.CONTRACT_CURRENCY_CODE,
141: x_conversion_date => l_conv_params_rec.currency_conversion_date,
142: x_conversion_type => l_conv_params_rec.currency_conversion_type,
143: x_amount => l_fa_amounts_rec.adjusted_cost);
144: l_original_cost := GL_CURRENCY_API.convert_amount (
145: x_from_currency => l_conv_params_rec.functional_currency_code,
146: x_to_currency => l_conv_params_rec.CONTRACT_CURRENCY_CODE,
147: x_conversion_date => l_conv_params_rec.currency_conversion_date,
148: x_conversion_type => l_conv_params_rec.currency_conversion_type,

Line 150: l_salvage_value := GL_CURRENCY_API.convert_amount (

146: x_to_currency => l_conv_params_rec.CONTRACT_CURRENCY_CODE,
147: x_conversion_date => l_conv_params_rec.currency_conversion_date,
148: x_conversion_type => l_conv_params_rec.currency_conversion_type,
149: x_amount => l_fa_amounts_rec.original_cost);
150: l_salvage_value := GL_CURRENCY_API.convert_amount (
151: x_from_currency => l_conv_params_rec.functional_currency_code,
152: x_to_currency => l_conv_params_rec.CONTRACT_CURRENCY_CODE,
153: x_conversion_date => l_conv_params_rec.currency_conversion_date,
154: x_conversion_type => l_conv_params_rec.currency_conversion_type,

Line 156: l_recoverable_cost := GL_CURRENCY_API.convert_amount (

152: x_to_currency => l_conv_params_rec.CONTRACT_CURRENCY_CODE,
153: x_conversion_date => l_conv_params_rec.currency_conversion_date,
154: x_conversion_type => l_conv_params_rec.currency_conversion_type,
155: x_amount => l_fa_amounts_rec.salvage_value);
156: l_recoverable_cost := GL_CURRENCY_API.convert_amount (
157: x_from_currency => l_conv_params_rec.functional_currency_code,
158: x_to_currency => l_conv_params_rec.CONTRACT_CURRENCY_CODE,
159: x_conversion_date => l_conv_params_rec.currency_conversion_date,
160: x_conversion_type => l_conv_params_rec.currency_conversion_type,

Line 162: l_adj_recoverable_cost := GL_CURRENCY_API.convert_amount (

158: x_to_currency => l_conv_params_rec.CONTRACT_CURRENCY_CODE,
159: x_conversion_date => l_conv_params_rec.currency_conversion_date,
160: x_conversion_type => l_conv_params_rec.currency_conversion_type,
161: x_amount => l_fa_amounts_rec.recoverable_cost);
162: l_adj_recoverable_cost := GL_CURRENCY_API.convert_amount (
163: x_from_currency => l_conv_params_rec.functional_currency_code,
164: x_to_currency => l_conv_params_rec.CONTRACT_CURRENCY_CODE,
165: x_conversion_date => l_conv_params_rec.currency_conversion_date,
166: x_conversion_type => l_conv_params_rec.currency_conversion_type,

Line 517: l_fa_cost := GL_CURRENCY_API.convert_amount (

513: l_conv_params_rec.currency_conversion_date is null then
514: null;
515: --raise error : currency conversion parameters not available;
516: else
517: l_fa_cost := GL_CURRENCY_API.convert_amount (
518: x_from_currency => l_conv_params_rec.contract_currency_code,
519: x_to_currency => l_conv_params_rec.FUNCTIONAL_CURRENCY_CODE,
520: x_conversion_date => l_conv_params_rec.currency_conversion_date,
521: x_conversion_type => l_conv_params_rec.currency_conversion_type,

Line 523: l_fa_salvage_value := GL_CURRENCY_API.convert_amount (

519: x_to_currency => l_conv_params_rec.FUNCTIONAL_CURRENCY_CODE,
520: x_conversion_date => l_conv_params_rec.currency_conversion_date,
521: x_conversion_type => l_conv_params_rec.currency_conversion_type,
522: x_amount => l_okl_cost);
523: l_fa_salvage_value := GL_CURRENCY_API.convert_amount (
524: x_from_currency => l_conv_params_rec.contract_currency_code,
525: x_to_currency => l_conv_params_rec.FUNCTIONAL_CURRENCY_CODE,
526: x_conversion_date => l_conv_params_rec.currency_conversion_date,
527: x_conversion_type => l_conv_params_rec.currency_conversion_type,