DBA Data[Home] [Help]

APPS.CS_SERVICEREQUEST_PVT dependencies on MO_GLOBAL

Line 1825: -- Moving this logic below since mo_global.check_access has to be done in any case if the profile CS_SR_RESTRICT_OPERATING_UNIT is set to yes

1821: else
1822: l_org_id := to_number(fnd_profile.value('CS_SR_ORG_ID'));
1823: end if;
1824: -- Fix for bug 10375745
1825: -- Moving this logic below since mo_global.check_access has to be done in any case if the profile CS_SR_RESTRICT_OPERATING_UNIT is set to yes
1826: if l_org_id is not null then
1827: if (mo_global.check_access(l_org_id) <> 'Y') then
1828: l_org_id := null;
1829: end if ;

Line 1827: if (mo_global.check_access(l_org_id) <> 'Y') then

1823: end if;
1824: -- Fix for bug 10375745
1825: -- Moving this logic below since mo_global.check_access has to be done in any case if the profile CS_SR_RESTRICT_OPERATING_UNIT is set to yes
1826: if l_org_id is not null then
1827: if (mo_global.check_access(l_org_id) <> 'Y') then
1828: l_org_id := null;
1829: end if ;
1830: end if;
1831:

Line 1850: if mo_global.check_access(p_org_id) ='Y' then

1846: ELSIF p_org_id is NOT NULL THEN -- p_org_id is NOT NULL
1847:
1848: If fnd_profile.value('CS_SR_RESTRICT_OPERATING_UNIT')='Y' then
1849: --changed l_org_id to p_org_id for the bug 10317826
1850: if mo_global.check_access(p_org_id) ='Y' then
1851: l_org_id := p_org_id;
1852: else
1853: l_org_id := null;
1854: FND_MESSAGE.set_name ('CS','CS_SR_OPERATING_UNIT_INVALID');