DBA Data[Home] [Help]

APPS.PA_COSTING_CLIENT_EXTNS dependencies on PA_EXPENDITURE_ITEMS

Line 26: x_raw_cost_amount in out NOCOPY pa_expenditure_items.raw_cost%type, --Changed for Bug#3858467

22: procedure Calc_Raw_Cost_Hook(
23: x_transaction_type in varchar2 default 'ACTUAL',
24: x_expenditure_item_id in number,
25: x_sys_linkage_function in varchar2,
26: x_raw_cost_amount in out NOCOPY pa_expenditure_items.raw_cost%type, --Changed for Bug#3858467
27: x_currency_code in out NOCOPY pa_expenditure_items.denom_currency_code%type, -- Added for bug#5594124
28: x_status in out NOCOPY number)
29: is
30: /* Added the following parameters for bug 5594124 */

Line 27: x_currency_code in out NOCOPY pa_expenditure_items.denom_currency_code%type, -- Added for bug#5594124

23: x_transaction_type in varchar2 default 'ACTUAL',
24: x_expenditure_item_id in number,
25: x_sys_linkage_function in varchar2,
26: x_raw_cost_amount in out NOCOPY pa_expenditure_items.raw_cost%type, --Changed for Bug#3858467
27: x_currency_code in out NOCOPY pa_expenditure_items.denom_currency_code%type, -- Added for bug#5594124
28: x_status in out NOCOPY number)
29: is
30: /* Added the following parameters for bug 5594124 */
31: l_denom_currency_code pa_expenditure_items.denom_currency_code%type;

Line 31: l_denom_currency_code pa_expenditure_items.denom_currency_code%type;

27: x_currency_code in out NOCOPY pa_expenditure_items.denom_currency_code%type, -- Added for bug#5594124
28: x_status in out NOCOPY number)
29: is
30: /* Added the following parameters for bug 5594124 */
31: l_denom_currency_code pa_expenditure_items.denom_currency_code%type;
32:
33: begin
34:
35: l_denom_currency_code := x_currency_code; /* Added for bug 5594124 */