DBA Data[Home] [Help]

APPS.PA_PROJECT_PVT dependencies on PA_PROJECT_TYPE_DISTRIBUTIONS

Line 4359: pa_project_type_distributions d

4355: IS
4356: CURSOR l_get_dist_rule_csr (l_project_type VARCHAR2,l_dist_rule VARCHAR2)
4357: IS
4358: SELECT 'x' FROM
4359: pa_project_type_distributions d
4360: WHERE d.project_type = l_project_type
4361: AND d.distribution_rule = l_dist_rule;
4362:
4363: --bug 3279981 Invoice Method cannot be cost if invoice method at top task is checked

Line 4366: FROM PA_PROJECT_TYPE_DISTRIBUTIONS ppd

4362:
4363: --bug 3279981 Invoice Method cannot be cost if invoice method at top task is checked
4364: CURSOR cur_get_valid_rules IS
4365: SELECT 'x'
4366: FROM PA_PROJECT_TYPE_DISTRIBUTIONS ppd
4367: WHERE ppd.project_type = p_project_type
4368: AND ppd.distribution_rule = p_dist_rule
4369: AND substr(ppd.Distribution_Rule, instr(ppd.Distribution_Rule,'/')+1) <> 'COST';
4370: