DBA Data[Home] [Help]

APPS.EGO_ITEM_PVT dependencies on EGO_SECURITY_PUB

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

348: ,EGO_ITEM_PUB.G_COMPANY_PARTY_TYPE
349: ,EGO_ITEM_PUB.G_ALL_USERS_PARTY_TYPE
350: ) THEN
351: IF p_party_type = EGO_ITEM_PUB.G_ALL_USERS_PARTY_TYPE THEN
352: x_party_id := -1000; -- needed by EGO_SECURITY_PUB
353: x_party_name := p_party_type;
354: RETURN TRUE;
355: ELSE
356: IF p_party_type = EGO_ITEM_PUB.G_COMPANY_PARTY_TYPE THEN

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

3384: IF p_transaction_type = EGO_ITEM_PUB.G_TTYPE_DELETE THEN
3385: --
3386: -- delete the grant given
3387: --
3388: code_debug(l_api_name||' calling EGO_SECURITY_PUB.revoke_grant ' );
3389: EGO_SECURITY_PUB.revoke_grant
3390: (p_api_version => 1.0
3391: ,p_grant_guid => RAWTOHEX(x_grant_guid)
3392: ,x_return_status => x_return_status

Line 3389: EGO_SECURITY_PUB.revoke_grant

3385: --
3386: -- delete the grant given
3387: --
3388: code_debug(l_api_name||' calling EGO_SECURITY_PUB.revoke_grant ' );
3389: EGO_SECURITY_PUB.revoke_grant
3390: (p_api_version => 1.0
3391: ,p_grant_guid => RAWTOHEX(x_grant_guid)
3392: ,x_return_status => x_return_status
3393: ,x_errorcode => l_dummy_number

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

3391: ,p_grant_guid => RAWTOHEX(x_grant_guid)
3392: ,x_return_status => x_return_status
3393: ,x_errorcode => l_dummy_number
3394: );
3395: code_debug(l_api_name||' returning EGO_SECURITY_PUB.revoke_grant with status '||x_return_status );
3396: IF x_return_status <> G_TRUE THEN
3397: --
3398: -- should never occur as the grant is already valid
3399: --

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

3429: END IF;
3430: IF (p_start_date > l_sysdate and l_start_date > l_sysdate) THEN
3431: l_start_date := NVL(p_start_date,l_start_date);
3432: END IF;
3433: code_debug(l_api_name||' calling EGO_SECURITY_PUB.set_grant_date ');
3434: EGO_SECURITY_PUB.set_grant_date
3435: (p_api_version => 1.0
3436: ,p_grant_guid => RAWTOHEX(x_grant_guid)
3437: ,p_start_date => l_start_date

Line 3434: EGO_SECURITY_PUB.set_grant_date

3430: IF (p_start_date > l_sysdate and l_start_date > l_sysdate) THEN
3431: l_start_date := NVL(p_start_date,l_start_date);
3432: END IF;
3433: code_debug(l_api_name||' calling EGO_SECURITY_PUB.set_grant_date ');
3434: EGO_SECURITY_PUB.set_grant_date
3435: (p_api_version => 1.0
3436: ,p_grant_guid => RAWTOHEX(x_grant_guid)
3437: ,p_start_date => l_start_date
3438: ,p_end_date => p_end_date

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

3437: ,p_start_date => l_start_date
3438: ,p_end_date => p_end_date
3439: ,x_return_status => x_return_status
3440: );
3441: code_debug(l_api_name||' returning EGO_SECURITY_PUB.set_grant_date with status '||x_return_status );
3442: IF x_return_status = G_FALSE THEN
3443: code_debug (l_api_version ||' overlap grant found for update ');
3444: fnd_message.Set_Name(G_APP_NAME, 'EGO_IPI_OVERLAP_GRANT');
3445: fnd_message.Set_Token('START_DATE', l_start_date);

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

3615: IF l_create_grant_flag THEN
3616: --
3617: -- create a new grant
3618: --
3619: code_debug(l_api_name||' calling EGO_SECURITY_PUB.grant_role_guid ');
3620: EGO_SECURITY_PUB.grant_role_guid
3621: (p_api_version => 1.0
3622: ,p_role_name => l_role_name
3623: ,p_object_name => G_EGO_ITEM

Line 3620: EGO_SECURITY_PUB.grant_role_guid

3616: --
3617: -- create a new grant
3618: --
3619: code_debug(l_api_name||' calling EGO_SECURITY_PUB.grant_role_guid ');
3620: EGO_SECURITY_PUB.grant_role_guid
3621: (p_api_version => 1.0
3622: ,p_role_name => l_role_name
3623: ,p_object_name => G_EGO_ITEM
3624: ,p_instance_type => p_instance_type

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

3634: ,x_return_status => x_return_status
3635: ,x_errorcode => x_msg_data
3636: ,x_grant_guid => x_grant_guid
3637: );
3638: code_debug(l_api_name||' returning EGO_SECURITY_PUB.grant_role_guid with status '||x_return_status);
3639: IF x_return_status = G_FALSE THEN
3640: code_debug (l_api_version ||' grant overlap when creating new grant ');
3641: fnd_message.Set_Name(G_APP_NAME, 'EGO_IPI_OVERLAP_GRANT');
3642: fnd_message.Set_Token('START_DATE', l_start_date);