DBA Data[Home] [Help]

APPS.PA_TASK_ASSIGNMENTS_PUB dependencies on CST_COST_TYPES_V

Line 4056: from cst_cost_types_V

4052:
4053:
4054: Cursor C_Cost_Type(p_cost_type IN VARCHAR2) IS
4055: select cost_type_id
4056: from cst_cost_types_V
4057: where multi_org_flag = 1
4058: and cost_type = p_cost_type;
4059: C_Cost_Type_rec C_Cost_Type%ROWTYPE;
4060:

Line 4063: from cst_cost_types_V

4059: C_Cost_Type_rec C_Cost_Type%ROWTYPE;
4060:
4061: Cursor C_Cost_Type_Exists(p_cost_type_id IN NUMBER) IS
4062: select 'X'
4063: from cst_cost_types_V
4064: where multi_org_flag = 1
4065: and cost_type_id = p_cost_type_id;
4066: C_Cost_Type_Exists_rec C_Cost_Type_Exists%ROWTYPE;
4067: