DBA Data[Home] [Help]

APPS.PA_MISC dependencies on PA_CURRENCY

Line 253: RETURN pa_currency.round_currency_amt((x_end_pa_date - x_start_pa_date + 1) * x_amount/

249: ( x_end_date >= x_End_pa_date ) THEN
250:
251: -- PA_PERIOD is within or identical to other period
252:
253: RETURN pa_currency.round_currency_amt((x_end_pa_date - x_start_pa_date + 1) * x_amount/
254: (x_end_date - x_start_date+ 1));
255:
256: ELSIF ( x_start_pa_date <= x_start_date) AND
257: ( x_end_pa_date <= x_End_date ) THEN

Line 259: RETURN pa_currency.round_currency_amt(( x_end_pa_date - x_start_date+ 1) * x_amount /

255:
256: ELSIF ( x_start_pa_date <= x_start_date) AND
257: ( x_end_pa_date <= x_End_date ) THEN
258:
259: RETURN pa_currency.round_currency_amt(( x_end_pa_date - x_start_date+ 1) * x_amount /
260: (x_end_date - x_start_date + 1));
261:
262: ELSIF ( x_start_pa_date >= x_start_date) AND
263: ( x_end_pa_date >= x_End_date ) THEN

Line 265: RETURN pa_currency.round_currency_amt(( x_end_date - x_start_pa_date + 1) * x_amount /

261:
262: ELSIF ( x_start_pa_date >= x_start_date) AND
263: ( x_end_pa_date >= x_End_date ) THEN
264:
265: RETURN pa_currency.round_currency_amt(( x_end_date - x_start_pa_date + 1) * x_amount /
266: (x_end_date - x_start_date + 1));
267:
268: ELSIF ( x_start_pa_date <= x_start_date ) AND
269: ( x_end_pa_date >= x_End_date ) THEN

Line 273: RETURN pa_currency.round_currency_amt(x_amount);

269: ( x_end_pa_date >= x_End_date ) THEN
270:
271: -- PA_PERIOD bigger or identical to other period
272:
273: RETURN pa_currency.round_currency_amt(x_amount);
274:
275: ELSIF ( x_end_pa_date <= x_start_date ) OR
276: ( x_start_pa_Date >= x_end_date ) OR
277: ( x_start_pa_date = x_end_pa_date )OR