DBA Data[Home] [Help]

APPS.IGS_SC_GRANTS_TBL_PVT dependencies on FND_MSG_PUB

Line 41: FND_MSg_PUB.Count_And_Get ( p_count => l_msg_count,

37: l_event_key VARCHAR2(255);
38:
39: BEGIN
40:
41: FND_MSg_PUB.Count_And_Get ( p_count => l_msg_count,
42: p_data => l_msg_data );
43:
44: IF (l_msg_count > 0) THEN
45:

Line 50: l_msg_data :=l_msg_data||' '|| FND_MSg_PUB.GET(l_cur, FND_API.g_FALSE);

46: l_msg_data := '';
47:
48: FOR l_cur IN 1..l_msg_count LOOP
49:
50: l_msg_data :=l_msg_data||' '|| FND_MSg_PUB.GET(l_cur, FND_API.g_FALSE);
51:
52: END LOOP;
53:
54: ELSE

Line 144: IF (FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)) THEN

140: WHEN OTHERS THEN
141:
142: -- Unexpected error during the execution. We need to return no wrows to the caller and raise business event
143:
144: IF (FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)) THEN
145: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'GET_GRANT');
146: END IF;
147:
148: l_where_clause := Generate_and_raise(p_object);

Line 145: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'GET_GRANT');

141:
142: -- Unexpected error during the execution. We need to return no wrows to the caller and raise business event
143:
144: IF (FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)) THEN
145: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'GET_GRANT');
146: END IF;
147:
148: l_where_clause := Generate_and_raise(p_object);
149: