DBA Data[Home] [Help]

APPS.PA_PROJECT_PVT dependencies on PA_PROJECT_TYPE_DISTRIBUTIONS

Line 4556: pa_project_type_distributions d

4552: IS
4553: CURSOR l_get_dist_rule_csr (l_project_type VARCHAR2,l_dist_rule VARCHAR2)
4554: IS
4555: SELECT 'x' FROM
4556: pa_project_type_distributions d
4557: WHERE d.project_type = l_project_type
4558: AND d.distribution_rule = l_dist_rule;
4559:
4560: --bug 3279981 Invoice Method cannot be cost if invoice method at top task is checked

Line 4563: FROM PA_PROJECT_TYPE_DISTRIBUTIONS ppd

4559:
4560: --bug 3279981 Invoice Method cannot be cost if invoice method at top task is checked
4561: CURSOR cur_get_valid_rules IS
4562: SELECT 'x'
4563: FROM PA_PROJECT_TYPE_DISTRIBUTIONS ppd
4564: WHERE ppd.project_type = p_project_type
4565: AND ppd.distribution_rule = p_dist_rule
4566: AND substr(ppd.Distribution_Rule, instr(ppd.Distribution_Rule,'/')+1) <> 'COST';
4567: