DBA Data[Home] [Help]

APPS.MYPACKAGENAME dependencies on PA_BILLING_PUB

Line 81: pa_billing_pub.get_budget_amount(

77: FROM pa_billing_inv_transactions_v;
78: END IF;
79:
80:
81: pa_billing_pub.get_budget_amount(
82: X2_project_id => X_project_id,
83: X2_task_id => X_top_task_id,
84: X2_revenue_amount => revenue,
85: X2_cost_amount => cost,

Line 108: -- when you call the pa_billing_PUB.Insert_Event procedure.

104: L_amount_to_accrue := revenue;
105: L_amount_to_bill := invoice;
106:
107: -- Need to pass proper parameters for your own billing extension
108: -- when you call the pa_billing_PUB.Insert_Event procedure.
109: -- You must pass in either a revenue amount or a bill amount to
110: -- insert_event. See Manual for details.
111: pa_billing_pub.Insert_Event (X_rev_amt => L_amount_to_accrue,
112: X_bill_amt => L_amount_to_bill,

Line 111: pa_billing_pub.Insert_Event (X_rev_amt => L_amount_to_accrue,

107: -- Need to pass proper parameters for your own billing extension
108: -- when you call the pa_billing_PUB.Insert_Event procedure.
109: -- You must pass in either a revenue amount or a bill amount to
110: -- insert_event. See Manual for details.
111: pa_billing_pub.Insert_Event (X_rev_amt => L_amount_to_accrue,
112: X_bill_amt => L_amount_to_bill,
113: X_project_id => X_project_id,
114: X_event_type => L_event_type,
115: X_top_task_id => X_top_task_id,

Line 134: -- when you call the pa_billing_PUB.Insert_Event procedure.

130: L_amount_to_accrue := revenue;
131: L_amount_to_bill := invoice;
132:
133: -- Need to pass proper parameters for your own billing extension
134: -- when you call the pa_billing_PUB.Insert_Event procedure.
135: -- You must pass in either a revenue amount or a bill amount to
136: -- insert_event. See Manual for details.
137: pa_billing_PUB.Insert_Event (
138: X_rev_amt => L_amount_to_accrue,

Line 137: pa_billing_PUB.Insert_Event (

133: -- Need to pass proper parameters for your own billing extension
134: -- when you call the pa_billing_PUB.Insert_Event procedure.
135: -- You must pass in either a revenue amount or a bill amount to
136: -- insert_event. See Manual for details.
137: pa_billing_PUB.Insert_Event (
138: X_rev_amt => L_amount_to_accrue,
139: X_bill_amt => L_amount_to_bill,
140: X_event_description => '',
141: X_event_num_reversed => L_event_num_reversed,

Line 150: pa_billing_pub.Insert_Message(X_inserting_procedure_name =>'MyProcName',

146:
147:
148: EXCEPTION
149: WHEN OTHERS THEN
150: pa_billing_pub.Insert_Message(X_inserting_procedure_name =>'MyProcName',
151: X_message => 'Error Message',
152: X_status => l_status,
153: X_error_message => l_error_message);
154: END MyProcName;