DBA Data[Home] [Help]

APPS.EAM_PM_SUPPRESSIONS dependencies on FND_MSG_PUB

Line 126: FND_MSG_PUB.initialize;

122: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
123: END IF;
124: -- Initialize message list if p_init_msg_list is set to TRUE.
125: IF FND_API.to_Boolean( p_init_msg_list ) THEN
126: FND_MSG_PUB.initialize;
127: END IF;
128: -- Initialize API return status to success
129: x_return_status := FND_API.G_RET_STS_SUCCESS;
130:

Line 151: FND_MSG_PUB.Count_And_Get

147: --dbms_output.put_line('committing');
148: COMMIT WORK;
149: END IF;
150: -- Standard call to get message count and if count is 1, get message info.
151: FND_MSG_PUB.Count_And_Get
152: ( p_count => x_msg_count ,
153: p_data => x_msg_data
154: );
155: EXCEPTION

Line 160: FND_MSG_PUB.Count_And_Get

156: WHEN FND_API.G_EXC_ERROR THEN
157: --dbms_output.put_line('g_exc_error');
158: ROLLBACK TO EAM_PM_SUPPRESSIONS;
159: x_return_status := FND_API.G_RET_STS_ERROR ;
160: FND_MSG_PUB.Count_And_Get
161: ( p_count => x_msg_count ,
162: p_data => x_msg_data
163: );
164: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 168: FND_MSG_PUB.Count_And_Get

164: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
165: --dbms_output.put_line('unexpected error');
166: ROLLBACK TO instantiate_meters_pub;
167: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
168: FND_MSG_PUB.Count_And_Get
169: ( p_count => x_msg_count ,
170: p_data => x_msg_data
171: );
172: WHEN OTHERS THEN

Line 176: IF FND_MSG_PUB.Check_Msg_Level

172: WHEN OTHERS THEN
173: --dbms_output.put_line('others');
174: ROLLBACK TO EAM_PM_SUPPRESSIONS;
175: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
176: IF FND_MSG_PUB.Check_Msg_Level
177: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
178: THEN
179: FND_MSG_PUB.Add_Exc_Msg
180: ( G_PKG_NAME ,

Line 177: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

173: --dbms_output.put_line('others');
174: ROLLBACK TO EAM_PM_SUPPRESSIONS;
175: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
176: IF FND_MSG_PUB.Check_Msg_Level
177: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
178: THEN
179: FND_MSG_PUB.Add_Exc_Msg
180: ( G_PKG_NAME ,
181: l_api_name

Line 179: FND_MSG_PUB.Add_Exc_Msg

175: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
176: IF FND_MSG_PUB.Check_Msg_Level
177: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
178: THEN
179: FND_MSG_PUB.Add_Exc_Msg
180: ( G_PKG_NAME ,
181: l_api_name
182: );
183: END IF;

Line 184: FND_MSG_PUB.Count_And_Get

180: ( G_PKG_NAME ,
181: l_api_name
182: );
183: END IF;
184: FND_MSG_PUB.Count_And_Get
185: ( p_count => x_msg_count ,
186: p_data => x_msg_data
187: );
188: