DBA Data[Home] [Help]

APPS.EGO_ITEM_PVT dependencies on EGO_SECURITY_PUB

Line 356: x_party_id := -1000; -- needed by EGO_SECURITY_PUB

352: ,EGO_ITEM_PUB.G_COMPANY_PARTY_TYPE
353: ,EGO_ITEM_PUB.G_ALL_USERS_PARTY_TYPE
354: ) THEN
355: IF p_party_type = EGO_ITEM_PUB.G_ALL_USERS_PARTY_TYPE THEN
356: x_party_id := -1000; -- needed by EGO_SECURITY_PUB
357: x_party_name := p_party_type;
358: RETURN TRUE;
359: ELSE
360: IF p_party_type = EGO_ITEM_PUB.G_COMPANY_PARTY_TYPE THEN

Line 3648: code_debug(l_api_name||' calling EGO_SECURITY_PUB.revoke_grant ' );

3644: IF p_transaction_type = EGO_ITEM_PUB.G_TTYPE_DELETE THEN
3645: --
3646: -- delete the grant given
3647: --
3648: code_debug(l_api_name||' calling EGO_SECURITY_PUB.revoke_grant ' );
3649: EGO_SECURITY_PUB.revoke_grant
3650: (p_api_version => 1.0
3651: ,p_grant_guid => RAWTOHEX(x_grant_guid)
3652: ,x_return_status => x_return_status

Line 3649: EGO_SECURITY_PUB.revoke_grant

3645: --
3646: -- delete the grant given
3647: --
3648: code_debug(l_api_name||' calling EGO_SECURITY_PUB.revoke_grant ' );
3649: EGO_SECURITY_PUB.revoke_grant
3650: (p_api_version => 1.0
3651: ,p_grant_guid => RAWTOHEX(x_grant_guid)
3652: ,x_return_status => x_return_status
3653: ,x_errorcode => l_dummy_number

Line 3655: code_debug(l_api_name||' returning EGO_SECURITY_PUB.revoke_grant with status '||x_return_status );

3651: ,p_grant_guid => RAWTOHEX(x_grant_guid)
3652: ,x_return_status => x_return_status
3653: ,x_errorcode => l_dummy_number
3654: );
3655: code_debug(l_api_name||' returning EGO_SECURITY_PUB.revoke_grant with status '||x_return_status );
3656: IF x_return_status <> G_TRUE THEN
3657: --
3658: -- should never occur as the grant is already valid
3659: --

Line 3693: code_debug(l_api_name||' calling EGO_SECURITY_PUB.set_grant_date ');

3689: END IF;
3690: IF (p_start_date > l_sysdate and l_start_date > l_sysdate) THEN
3691: l_start_date := NVL(p_start_date,l_start_date);
3692: END IF;
3693: code_debug(l_api_name||' calling EGO_SECURITY_PUB.set_grant_date ');
3694: EGO_SECURITY_PUB.set_grant_date
3695: (p_api_version => 1.0
3696: ,p_grant_guid => RAWTOHEX(x_grant_guid)
3697: ,p_start_date => l_start_date

Line 3694: EGO_SECURITY_PUB.set_grant_date

3690: IF (p_start_date > l_sysdate and l_start_date > l_sysdate) THEN
3691: l_start_date := NVL(p_start_date,l_start_date);
3692: END IF;
3693: code_debug(l_api_name||' calling EGO_SECURITY_PUB.set_grant_date ');
3694: EGO_SECURITY_PUB.set_grant_date
3695: (p_api_version => 1.0
3696: ,p_grant_guid => RAWTOHEX(x_grant_guid)
3697: ,p_start_date => l_start_date
3698: ,p_end_date => p_end_date

Line 3701: code_debug(l_api_name||' returning EGO_SECURITY_PUB.set_grant_date with status '||x_return_status );

3697: ,p_start_date => l_start_date
3698: ,p_end_date => p_end_date
3699: ,x_return_status => x_return_status
3700: );
3701: code_debug(l_api_name||' returning EGO_SECURITY_PUB.set_grant_date with status '||x_return_status );
3702: IF x_return_status = G_FALSE THEN
3703: code_debug (l_api_version ||' overlap grant found for update ');
3704: fnd_message.Set_Name(G_APP_NAME, 'EGO_IPI_OVERLAP_GRANT');
3705: fnd_message.Set_Token('START_DATE', l_start_date);

Line 3879: code_debug(l_api_name||' calling EGO_SECURITY_PUB.grant_role_guid ');

3875: IF l_create_grant_flag THEN
3876: --
3877: -- create a new grant
3878: --
3879: code_debug(l_api_name||' calling EGO_SECURITY_PUB.grant_role_guid ');
3880: EGO_SECURITY_PUB.grant_role_guid
3881: (p_api_version => 1.0
3882: ,p_role_name => l_role_name
3883: ,p_object_name => G_EGO_ITEM

Line 3880: EGO_SECURITY_PUB.grant_role_guid

3876: --
3877: -- create a new grant
3878: --
3879: code_debug(l_api_name||' calling EGO_SECURITY_PUB.grant_role_guid ');
3880: EGO_SECURITY_PUB.grant_role_guid
3881: (p_api_version => 1.0
3882: ,p_role_name => l_role_name
3883: ,p_object_name => G_EGO_ITEM
3884: ,p_instance_type => p_instance_type

Line 3898: code_debug(l_api_name||' returning EGO_SECURITY_PUB.grant_role_guid with status '||x_return_status);

3894: ,x_return_status => x_return_status
3895: ,x_errorcode => x_msg_data
3896: ,x_grant_guid => x_grant_guid
3897: );
3898: code_debug(l_api_name||' returning EGO_SECURITY_PUB.grant_role_guid with status '||x_return_status);
3899: IF x_return_status = G_FALSE THEN
3900: code_debug (l_api_version ||' grant overlap when creating new grant ');
3901: fnd_message.Set_Name(G_APP_NAME, 'EGO_IPI_OVERLAP_GRANT');
3902: fnd_message.Set_Token('START_DATE', l_start_date);