DBA Data[Home] [Help]

APPS.AMS_MULTIMEDIA_PVT dependencies on FND_MSG_PUB

Line 60: FND_MSG_PUB.initialize;

56:
57: -- Initialize message list if p_init_msg_list is set to TRUE.
58: IF FND_API.to_Boolean( p_init_msg_list )
59: THEN
60: FND_MSG_PUB.initialize;
61: END IF;
62:
63: -- Debug Message
64: -- AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'start');

Line 76: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)

72: -- Validate Environment
73: -- ******************************************************************
74: IF FND_GLOBAL.User_Id IS NULL
75: THEN
76: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
77: THEN
78: FND_MESSAGE.Set_Name('AMS', 'USER_PROFILE_MISSING');
79: FND_MSG_PUB.ADD;
80: END IF;

Line 79: FND_MSG_PUB.ADD;

75: THEN
76: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
77: THEN
78: FND_MESSAGE.Set_Name('AMS', 'USER_PROFILE_MISSING');
79: FND_MSG_PUB.ADD;
80: END IF;
81: RAISE FND_API.G_EXC_ERROR;
82: END IF;
83:

Line 127: FND_MSG_PUB.Count_And_Get

123: -- Debug Message
124: -- AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
125:
126: -- Standard call to get message count and if count is 1, get message info.
127: FND_MSG_PUB.Count_And_Get
128: (p_count => x_msg_count,
129: p_data => x_msg_data
130: );
131: EXCEPTION

Line 136: FND_MSG_PUB.Count_And_Get (

132: WHEN FND_API.G_EXC_ERROR THEN
133:
134: x_return_status := FND_API.G_RET_STS_ERROR;
135: -- Standard call to get message count and if count=1, get the message
136: FND_MSG_PUB.Count_And_Get (
137: p_encoded => FND_API.G_FALSE,
138: p_count => x_msg_count,
139: p_data => x_msg_data
140: );

Line 145: FND_MSG_PUB.Count_And_Get (

141: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
142:
143: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
144: -- Standard call to get message count and if count=1, get the message
145: FND_MSG_PUB.Count_And_Get (
146: p_encoded => FND_API.G_FALSE,
147: p_count => x_msg_count,
148: p_data => x_msg_data
149: );

Line 153: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

149: );
150: WHEN OTHERS THEN
151:
152: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
153: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
154: THEN
155: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
156: END IF;
157: -- Standard call to get message count and if count=1, get the message

Line 155: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

151:
152: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
153: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
154: THEN
155: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
156: END IF;
157: -- Standard call to get message count and if count=1, get the message
158: FND_MSG_PUB.Count_And_Get (
159: p_encoded => FND_API.G_FALSE,

Line 158: FND_MSG_PUB.Count_And_Get (

154: THEN
155: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
156: END IF;
157: -- Standard call to get message count and if count=1, get the message
158: FND_MSG_PUB.Count_And_Get (
159: p_encoded => FND_API.G_FALSE,
160: p_count => x_msg_count,
161: p_data => x_msg_data
162: );