DBA Data[Home] [Help]

APPS.PA_COST_PLUS1 dependencies on PA_COST_PLUS

Line 1: package body PA_COST_PLUS1 as

1: package body PA_COST_PLUS1 as
2: -- $Header: PAXCCPFB.pls 120.2.12000000.4 2007/05/02 09:42:33 haananth ship $
3:
4: NO_DATA_FOUND_ERR number := 100;
5:

Line 115: pa_cost_plus.find_rate_sch_rev_id(

111: --
112: -- Get the rate schedule revision id
113: --
114:
115: pa_cost_plus.find_rate_sch_rev_id(
116: p_txn_interface_id, -- added instead of NULL Bug 3246794
117: 'TRANSACTION_IMPORT', -- added instead of 'PA' Bug 3246794
118: task_id,
119: schedule_type,

Line 137: pa_cost_plus.get_cost_plus_structure(rate_sch_rev_id,

133: --
134: -- Get the cost plus structure
135: --
136:
137: pa_cost_plus.get_cost_plus_structure(rate_sch_rev_id,
138: cp_structure,
139: status,
140: stage);
141:

Line 152: pa_cost_plus.get_cost_base(expenditure_type,

148: --
149: -- Get the cost base
150: --
151:
152: pa_cost_plus.get_cost_base(expenditure_type,
153: cp_structure,
154: c_base,
155: status,
156: stage);

Line 176: pa_cost_plus.get_compiled_set_id(rate_sch_rev_id,

172: END IF;
173: END IF;
174:
175: stage := 400;
176: pa_cost_plus.get_compiled_set_id(rate_sch_rev_id,
177: organization_id,
178: c_base,
179: Compiled_set_id,
180: status,

Line 190: pa_cost_plus1.get_indirect_cost_import_sum1 ( org_id => organization_id

186:
187: --
188: -- Get the indirect cost
189: --
190: pa_cost_plus1.get_indirect_cost_import_sum1 ( org_id => organization_id
191: ,c_base => c_base
192: ,rate_sch_rev_id => rate_sch_rev_id
193: ,direct_cost => direct_cost
194: ,direct_cost_denom => direct_cost_denom

Line 270: pa_cost_plus.find_rate_sch_rev_id(

266: --
267: -- Get the rate schedule revision id
268: --
269:
270: pa_cost_plus.find_rate_sch_rev_id(
271: NULL,
272: 'PA',
273: task_id,
274: schedule_type,

Line 292: pa_cost_plus.get_cost_plus_structure(rate_sch_rev_id,

288: --
289: -- Get the cost plus structure
290: --
291:
292: pa_cost_plus.get_cost_plus_structure(rate_sch_rev_id,
293: cp_structure,
294: status,
295: stage);
296:

Line 307: pa_cost_plus.get_cost_base(expenditure_type,

303: --
304: -- Get the cost base
305: --
306:
307: pa_cost_plus.get_cost_base(expenditure_type,
308: cp_structure,
309: c_base,
310: status,
311: stage);

Line 331: pa_cost_plus.get_indirect_cost_sum(organization_id,

327: --
328: -- Get the indirect cost
329: --
330: /*For bug# 2110452:To implement the same logic for burdening as is used in R10.7/R11.0*/
331: pa_cost_plus.get_indirect_cost_sum(organization_id,
332: c_base,
333: rate_sch_rev_id,
334: direct_cost,
335: 2, -- FOR US CURRENCY

Line 347: pa_cost_plus.get_compiled_multiplier(organization_id,

343: --
344: -- Get the sum of the compiled Multipliers
345: --
346:
347: pa_cost_plus.get_compiled_multiplier(organization_id,
348: c_base,
349: rate_sch_rev_id,
350: compiled_multiplier,
351: status,

Line 372: -- from local package instead of pa_cost_plus.view_indirect_cost

368:
369:
370: -- Bug 886868, BURDEN AMOUNT DOUBLED IN PSI FOR REQUISITIONS
371: -- Modified get_indirect_cost_amounts procedure to call view_indirect_cost
372: -- from local package instead of pa_cost_plus.view_indirect_cost
373: -- This package is being called from form and the objective of the form
374: -- is to show burden cost as well as burden cost breakdown for
375: -- entered data. To show true burden calculation we should NOT implement
376: -- the burden summarization logic into this form

Line 398: pa_cost_plus1.view_indirect_cost( x_task_id,

394:
395: --
396: -- Get the costing indirect cost
397: --
398: pa_cost_plus1.view_indirect_cost( x_task_id,
399: x_gl_date,
400: x_expenditure_type,
401: x_organization_id,
402: 'C',

Line 421: pa_cost_plus1.view_indirect_cost( x_task_id,

417:
418: --
419: -- Get the revenue indirect cost
420: --
421: pa_cost_plus1.view_indirect_cost( x_task_id,
422: x_gl_date,
423: x_expenditure_type,
424: x_organization_id,
425: 'R',

Line 449: pa_cost_plus1.view_indirect_cost( x_task_id,

445:
446: --
447: -- Get the invoice indirect cost
448: --
449: pa_cost_plus1.view_indirect_cost( x_task_id,
450: x_gl_date,
451: x_expenditure_type,
452: x_organization_id,
453: 'I',

Line 504: pa_cost_plus.find_rate_sch_rev_id (NULL,

500:
501: x_return_status := 0;
502: x_stage := 0;
503:
504: pa_cost_plus.find_rate_sch_rev_id (NULL,
505: 'PA',
506: x_task_id,
507: x_detail_type_flag,
508: x_gl_date,

Line 529: pa_cost_plus.get_cost_plus_structure(x_rate_sch_rev_id,

525:
526:
527: begin
528:
529: pa_cost_plus.get_cost_plus_structure(x_rate_sch_rev_id,
530: x_cp_structure,
531: x_return_status,
532: x_stage);
533:

Line 534: pa_cost_plus.get_cost_base (x_expenditure_type,

530: x_cp_structure,
531: x_return_status,
532: x_stage);
533:
534: pa_cost_plus.get_cost_base (x_expenditure_type,
535: x_cp_structure,
536: x_cost_base,
537: x_return_status,
538: x_stage);

Line 652: pa_cost_plus.find_rate_sch_rev_id(

648: -- Get the rate schedule revision id
649: --
650:
651: stage := 100;
652: pa_cost_plus.find_rate_sch_rev_id(
653: p_txn_interface_id, -- changed from NULL for bug 2563364
654: 'PA', /*Bug 4311703 */ -- changed from 'PA' for bug 2563364
655: task_id,
656: schedule_type,

Line 672: pa_cost_plus.get_cost_plus_structure(rate_sch_rev_id,

668: -- Get the cost plus structure
669: --
670:
671: stage := 200;
672: pa_cost_plus.get_cost_plus_structure(rate_sch_rev_id,
673: cp_structure,
674: status,
675: stage);
676:

Line 687: pa_cost_plus.get_cost_base(expenditure_type,

683: -- Get the cost base
684: --
685:
686: stage := 300;
687: pa_cost_plus.get_cost_base(expenditure_type,
688: cp_structure,
689: c_base,
690: status,
691: stage);

Line 699: pa_cost_plus.get_compiled_set_id(rate_sch_rev_id,

695: END IF;
696:
697: x_cost_base := c_base; --Bug# 5743708
698: stage := 400;
699: pa_cost_plus.get_compiled_set_id(rate_sch_rev_id,
700: organization_id,
701: c_base,
702: Compiled_set_id,
703: status,

Line 711: pa_cost_plus.get_compiled_multiplier( organization_id,

707: return;
708: END IF;
709:
710: stage := 500;
711: pa_cost_plus.get_compiled_multiplier( organization_id,
712: c_base,
713: rate_sch_rev_id,
714: compiled_multiplier,
715: status,

Line 724: end PA_COST_PLUS1 ;

720: EXCEPTION WHEN OTHERS THEN
721: status := SQLCODE;
722: END get_compile_set_info;
723:
724: end PA_COST_PLUS1 ;