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 3038: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_USERACCESS');

3034: IBE_Util.Debug('RECIPIENT access level: ' || l_access_level);
3035: END IF;
3036: if (l_access_level is null) then
3037: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
3038: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_USERACCESS');
3039: FND_Msg_Pub.Add;
3040: END IF;
3041: -- need to raise an error that the user no longer has access to this cart
3042: RAISE FND_API.G_EXC_ERROR;

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

3047: -- owner only operations
3048: if (p_operation_code in (OP_APPEND, OP_NAME_CART, OP_SAVE_CART_AND_RECIPIENTS)) then
3049: if (l_is_owner = FND_API.G_FALSE) then
3050: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
3051: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_PRIVILEGE');
3052: FND_Msg_Pub.Add;
3053: END IF;
3054: -- raise an error that the user does not have this privilege
3055: RAISE FND_API.G_EXC_ERROR;

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

3060: -- owner or admin operations
3061: elsif (p_operation_code in (OP_STOP_SHARING, OP_DELETE_CART)) then
3062: if ((l_is_owner = FND_API.G_FALSE) and (l_access_level <> 'A')) then
3063: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
3064: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_PRIVILEGE');
3065: FND_Msg_Pub.Add;
3066: END IF;
3067: -- raise an error that the user does not have this privilege
3068: RAISE FND_API.G_EXC_ERROR;

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

3122: and (p_quote_access_tbl(i).update_privilege_type_code is not null)
3123: and (p_quote_access_tbl(i).update_privilege_type_code <> FND_API.G_MISS_CHAR)
3124: and (p_quote_access_tbl(i).update_privilege_type_code <> l_db_quote_access_tbl(i).update_privilege_type_code))) then
3125: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
3126: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_PRIVILEGE');
3127: FND_Msg_Pub.Add;
3128: END IF;
3129: RAISE FND_API.G_EXC_ERROR;
3130: end if;

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

3152: IBE_UTIL.DEBUG('timestamps do not match, but user was the last to update the row so allowing it to go through');
3153: end if;
3154: else
3155: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
3156: FND_Message.Set_Name('IBE', 'IBE_SC_ERR_MEMBERS_OUT_OF_SYNC');
3157: FND_Msg_Pub.Add;
3158: END IF;
3159: -- need a new error msg that the row has been updated by another user and to try again
3160: RAISE FND_API.G_EXC_ERROR;