DBA Data[Home] [Help]

APPS.PA_CONTROL_ITEMS_UTILS dependencies on PA_CI_SECURITY_PKG

Line 549: l_check_update_access := nvl(pa_ci_security_pkg.check_create_action(p_ci_id),'F');

545:
546:
547: IF p_ci_id is NOT NULL
548: AND p_page_code = 'CREATE_ACTION' THEN
549: l_check_update_access := nvl(pa_ci_security_pkg.check_create_action(p_ci_id),'F');
550: if l_check_update_access <> 'T' then
551: return 'N';
552: end if;
553: END IF;

Line 556: --l_check_view_access := pa_ci_security_pkg.check_view_access(p_ci_id);

552: end if;
553: END IF;
554:
555:
556: --l_check_view_access := pa_ci_security_pkg.check_view_access(p_ci_id);
557:
558: -- Following pages require UPDATE access
559: -- if p_page_code = 'ADD_COMMENT'
560: if p_ci_id is NOT NULL

Line 569: l_check_update_access := nvl(pa_ci_security_pkg.check_update_access(p_ci_id),'F');

565: OR p_page_code = 'UPDATE_STATUS_OVERVIEW'
566: OR p_page_code = 'RELATED_ITEM'
567: OR p_page_code = 'ADD_ATTACHMENTS')
568: THEN
569: l_check_update_access := nvl(pa_ci_security_pkg.check_update_access(p_ci_id),'F');
570:
571: if l_check_update_access <> 'T' then
572: return 'N';
573: end if;

Line 581: l_stat_change := nvl(pa_ci_security_pkg.check_change_status_access(p_ci_id),'F');

577: -- based on status and security
578: if p_ci_id is NOT NULL
579: AND ( p_page_code = 'REVIEW_AND_SUB_CI' OR p_page_code = 'REVIEW_CI') then
580: if submitAllowed (NULL,NULL,NULL,getCISystemStatus(p_ci_id)) = 'Y' then
581: l_stat_change := nvl(pa_ci_security_pkg.check_change_status_access(p_ci_id),'F');
582:
583: if l_stat_change = 'T' then
584: if p_page_code = 'REVIEW_CI' then
585: return 'N'; -- don't show "Review", allowed to change status

Line 610: if pa_ci_security_pkg.check_implement_impact_access(p_ci_id) <> 'Y' THEN

606: end if;
607:
608: if l_ci_type_has_impact ='Y' then
609: if ( p_page_code = 'IMPLEMENT_IMPACT') then
610: if pa_ci_security_pkg.check_implement_impact_access(p_ci_id) <> 'Y' THEN
611: return 'N';
612: end if;
613: end if;
614: else

Line 1660: l_check_update_access := nvl(pa_ci_security_pkg.check_update_access(p_ci_id),'F');

1656: return 'N';
1657: end if;
1658:
1659: if p_ci_id is NOT NULL then
1660: l_check_update_access := nvl(pa_ci_security_pkg.check_update_access(p_ci_id),'F');
1661: if l_check_update_access <> 'T' then
1662: return 'N';
1663: end if;
1664: end if;

Line 2227: l_temp := pa_ci_security_pkg.check_change_status_access(p_ci_id,

2223: ) then
2224: NULL;
2225: ELSE
2226:
2227: l_temp := pa_ci_security_pkg.check_change_status_access(p_ci_id,
2228: fnd_global.user_id);
2229:
2230: IF P_PA_DEBUG_MODE = 'Y' THEN
2231: pa_debug.write_file('ChangeCiStatusValidate: pa_ci_security_pkg.check_change_status_access :'||l_temp);

Line 2231: pa_debug.write_file('ChangeCiStatusValidate: pa_ci_security_pkg.check_change_status_access :'||l_temp);

2227: l_temp := pa_ci_security_pkg.check_change_status_access(p_ci_id,
2228: fnd_global.user_id);
2229:
2230: IF P_PA_DEBUG_MODE = 'Y' THEN
2231: pa_debug.write_file('ChangeCiStatusValidate: pa_ci_security_pkg.check_change_status_access :'||l_temp);
2232: END IF;
2233:
2234: IF (l_temp <> 'T') THEN
2235: IF P_PA_DEBUG_MODE = 'Y' THEN