DBA Data[Home] [Help]

APPS.PA_BURDEN_CMTS dependencies on PA_COST_PLUS

Line 20: cp_structure pa_cost_plus_structures.cost_plus_structure%TYPE;

16: RETURN NUMBER
17: IS
18: compiled_set_id NUMBER;
19: cost_base pa_cost_bases.cost_base%TYPE;
20: cp_structure pa_cost_plus_structures.cost_plus_structure%TYPE;
21: rate_sch_rev_id NUMBER;
22: sch_id NUMBER;
23: sch_fixed_date DATE;
24: status NUMBER;

Line 32: pa_cost_plus.find_rate_sch_rev_id(

28: -- First get the rate_sch_rev_id
29:
30: compiled_set_id := NULL;
31:
32: pa_cost_plus.find_rate_sch_rev_id(
33: x_transaction_id,
34: x_transaction_type,
35: x_task_id,
36: x_schedule_type,

Line 48: pa_cost_plus.get_cost_plus_structure( rate_sch_rev_id => rate_sch_rev_id

44: IF ( status <> 0 ) THEN
45: RETURN NULL;
46: END IF;
47:
48: pa_cost_plus.get_cost_plus_structure( rate_sch_rev_id => rate_sch_rev_id
49: ,cp_structure => cp_structure
50: ,status => status
51: ,stage => stage
52: );

Line 58: pa_cost_plus.get_cost_base( exp_type => p_expenditure_type

54: IF (status <> 0) THEN
55: return NULL;
56: END IF;
57:
58: pa_cost_plus.get_cost_base( exp_type => p_expenditure_type
59: ,cp_structure => cp_structure
60: ,c_base => cost_base
61: ,status => status
62: ,stage => stage

Line 71: pa_cost_plus.get_compiled_set_id(

67: END IF;
68:
69: -- Now get the compiled_set_id
70:
71: pa_cost_plus.get_compiled_set_id(
72: rate_sch_rev_id,
73: x_organization_id,
74: cost_base,
75: compiled_set_id,

Line 114: pa_cost_plus.view_indirect_cost(

110: -- Get the burden cost component first
111:
112: indirect_cost := 0;
113:
114: pa_cost_plus.view_indirect_cost(
115: x_transaction_id,
116: x_transaction_type,
117: x_task_id,
118: x_expenditure_item_date,