DBA Data[Home] [Help]

APPS.IBE_QUOTE_SAVESHARE_V2_PVT dependencies on FND_MESSAGE

Line 84: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_USERACCESS');

80: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
81: IBE_UTIL.DEBUG('Not saving party and cust_account_id because account_ids do not match');
82: END IF;
83: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
84: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_USERACCESS');
85: FND_Msg_Pub.Add;
86: END IF;
87: RAISE FND_API.G_EXC_ERROR;
88: END IF;

Line 3059: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_USERACCESS');

3055: IBE_Util.Debug('RECIPIENT access level: ' || l_access_level);
3056: END IF;
3057: if (l_access_level is null) then
3058: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
3059: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_USERACCESS');
3060: FND_Msg_Pub.Add;
3061: END IF;
3062: -- need to raise an error that the user no longer has access to this cart
3063: RAISE FND_API.G_EXC_ERROR;

Line 3072: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_PRIVILEGE');

3068: -- owner only operations
3069: if (p_operation_code in (OP_APPEND, OP_NAME_CART, OP_SAVE_CART_AND_RECIPIENTS)) then
3070: if (l_is_owner = FND_API.G_FALSE) then
3071: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
3072: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_PRIVILEGE');
3073: FND_Msg_Pub.Add;
3074: END IF;
3075: -- raise an error that the user does not have this privilege
3076: RAISE FND_API.G_EXC_ERROR;

Line 3085: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_PRIVILEGE');

3081: -- owner or admin operations
3082: elsif (p_operation_code in (OP_STOP_SHARING, OP_DELETE_CART)) then
3083: if ((l_is_owner = FND_API.G_FALSE) and (l_access_level <> 'A')) then
3084: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
3085: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_PRIVILEGE');
3086: FND_Msg_Pub.Add;
3087: END IF;
3088: -- raise an error that the user does not have this privilege
3089: RAISE FND_API.G_EXC_ERROR;

Line 3147: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_PRIVILEGE');

3143: and (p_quote_access_tbl(i).update_privilege_type_code is not null)
3144: and (p_quote_access_tbl(i).update_privilege_type_code <> FND_API.G_MISS_CHAR)
3145: and (p_quote_access_tbl(i).update_privilege_type_code <> l_db_quote_access_tbl(i).update_privilege_type_code))) then
3146: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
3147: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_PRIVILEGE');
3148: FND_Msg_Pub.Add;
3149: END IF;
3150: RAISE FND_API.G_EXC_ERROR;
3151: end if;

Line 3177: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_MEMBERS_OUT_OF_SYNC');

3173: IBE_UTIL.DEBUG('timestamps do not match, but user was the last to update the row so allowing it to go through');
3174: end if;
3175: else
3176: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
3177: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_MEMBERS_OUT_OF_SYNC');
3178: FND_Msg_Pub.Add;
3179: END IF;
3180: -- need a new error msg that the row has been updated by another user and to try again
3181: RAISE FND_API.G_EXC_ERROR;