DBA Data[Home] [Help]

APPS.EGO_PARTY_PUB dependencies on EGO_SECURITY_PUB

Line 1740: -- mdebug('ADD_GROUP_MEMBER: Before calling EGO_SECURITY_PUB.GRANT_ROLE ');

1736: ,x_msg_data => x_msg_data
1737: );
1738:
1739: -- commented out for not giving a grant to the member
1740: -- mdebug('ADD_GROUP_MEMBER: Before calling EGO_SECURITY_PUB.GRANT_ROLE ');
1741: -- mdebug('ADD_GROUP_MEMBER: p_api_version => 1.0, p_role_name = ''EGO_VIEW_GROUP_MEMBERS'', ');
1742: -- mdebug('ADD_GROUP_MEMBER: p_object_name => ''EGO_GROUP'', p_instance_type => ''INSTANCE'', ');
1743: -- mdebug('ADD_GROUP_MEMBER: p_object_key => ' ||to_char(p_group_id) ||', p_party_id => ' || to_char(p_member_id)||', ');
1744: -- mdebug('ADD_GROUP_MEMBER: p_start_date => ' ||TO_CHAR(NVL(p_start_date, SYSDATE),'DD-MON-YYYY')||', p_end_date => NULL');

Line 1746: -- EGO_SECURITY_PUB.grant_role

1742: -- mdebug('ADD_GROUP_MEMBER: p_object_name => ''EGO_GROUP'', p_instance_type => ''INSTANCE'', ');
1743: -- mdebug('ADD_GROUP_MEMBER: p_object_key => ' ||to_char(p_group_id) ||', p_party_id => ' || to_char(p_member_id)||', ');
1744: -- mdebug('ADD_GROUP_MEMBER: p_start_date => ' ||TO_CHAR(NVL(p_start_date, SYSDATE),'DD-MON-YYYY')||', p_end_date => NULL');
1745:
1746: -- EGO_SECURITY_PUB.grant_role
1747: -- (p_api_version => 1.0
1748: -- ,p_role_name => 'EGO_VIEW_GROUP_MEMBERS'
1749: -- ,p_object_name => 'EGO_GROUP'
1750: -- ,p_instance_type => 'INSTANCE'

Line 1758: -- mdebug('ADD_GROUP_MEMBER: Successfully exited from EGO_SECURITY_PUB.grant_role ');

1754: -- ,p_end_date => NULL
1755: -- ,x_return_status => l_return_status
1756: -- ,x_errorcode => l_error_code
1757: -- );
1758: -- mdebug('ADD_GROUP_MEMBER: Successfully exited from EGO_SECURITY_PUB.grant_role ');
1759: -- mdebug('ADD_GROUP_MEMBER: return status '|| l_return_status );
1760: -- mdebug('ADD_GROUP_MEMBER: error_code '|| l_error_code );
1761: -- --
1762: -- -- EGO Security pub returns T if the action is success

Line 1762: -- -- EGO Security pub returns T if the action is success

1758: -- mdebug('ADD_GROUP_MEMBER: Successfully exited from EGO_SECURITY_PUB.grant_role ');
1759: -- mdebug('ADD_GROUP_MEMBER: return status '|| l_return_status );
1760: -- mdebug('ADD_GROUP_MEMBER: error_code '|| l_error_code );
1761: -- --
1762: -- -- EGO Security pub returns T if the action is success
1763: -- -- and F on failure
1764: -- --
1765: -- IF l_return_status <> 'T' THEN
1766: -- x_return_status := FND_API.G_RET_STS_ERROR;

Line 1969: EGO_SECURITY_PUB.revoke_grant

1965: cp_instance_id => l_group_id);
1966: FETCH get_grant_guid_cur INTO l_grant_guid;
1967: IF(get_grant_guid_cur%FOUND) THEN
1968: CLOSE get_grant_guid_cur;
1969: EGO_SECURITY_PUB.revoke_grant
1970: (
1971: p_api_version =>p_api_version
1972: ,p_grant_guid =>l_grant_guid
1973: ,x_return_status =>x_ret_status