DBA Data[Home] [Help]

APPS.EAM_ASSET_LOG_PUB dependencies on FND_MSG_PUB

Line 82: FND_MSG_PUB.initialize;

78: END IF;
79:
80: /* Initialize message list if p_init_msg_list is set to TRUE. */
81: IF FND_API.to_Boolean( p_init_msg_list ) THEN
82: FND_MSG_PUB.initialize;
83: END IF;
84:
85: /* Initialize API return status to success */
86: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 95: -- fnd_msg_pub.eventtype;

91: /* Validation to prevent System Events Log through Public API calls */
92: IF
93: (p_event_type is null OR p_event_type NOT IN ('EAM_USER_EVENTS', 'EAM_OPERATIONAL_EVENTS'))
94: THEN
95: -- fnd_msg_pub.eventtype;
96: fnd_message.set_name
97: ( application => 'EAM'
98: , name => 'EAM_EVENT_TYPE_INVALID'
99: );

Line 100: fnd_msg_pub.add;

96: fnd_message.set_name
97: ( application => 'EAM'
98: , name => 'EAM_EVENT_TYPE_INVALID'
99: );
100: fnd_msg_pub.add;
101: x_return_status:= fnd_api.g_ret_sts_error;
102: fnd_msg_pub.count_and_get
103: ( p_count => x_msg_count,
104: p_data => x_msg_data

Line 102: fnd_msg_pub.count_and_get

98: , name => 'EAM_EVENT_TYPE_INVALID'
99: );
100: fnd_msg_pub.add;
101: x_return_status:= fnd_api.g_ret_sts_error;
102: fnd_msg_pub.count_and_get
103: ( p_count => x_msg_count,
104: p_data => x_msg_data
105: );
106: return;

Line 250: FND_MSG_PUB.GET

246: IF FND_API.TO_BOOLEAN( P_COMMIT ) THEN
247: COMMIT WORK;
248: END IF;
249: -- Standard call to get message count and if count is 1, get message info.
250: FND_MSG_PUB.GET
251: ( p_msg_index_out => x_msg_count ,
252: p_data => x_msg_data
253: );
254:

Line 259: FND_MSG_PUB.Get

255: EXCEPTION
256: WHEN FND_API.G_EXC_ERROR THEN
257: ROLLBACK TO EAM_ASSET_LOG_PUB_SV;
258: x_return_status := FND_API.G_RET_STS_ERROR ;
259: FND_MSG_PUB.Get
260: ( p_msg_index_out => x_msg_count ,
261: p_data => x_msg_data
262: );
263:

Line 267: FND_MSG_PUB.get

263:
264: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
265: ROLLBACK TO EAM_ASSET_LOG_PUB_SV;
266: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
267: FND_MSG_PUB.get
268: ( p_msg_index_out => x_msg_count ,
269: p_data => x_msg_data
270: );
271:

Line 276: IF FND_MSG_PUB.Check_Msg_Level

272: WHEN OTHERS THEN
273: ROLLBACK TO EAM_ASSET_LOG_PUB_SV;
274: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
275:
276: IF FND_MSG_PUB.Check_Msg_Level
277: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
278: THEN
279: FND_MSG_PUB.Add_Exc_Msg
280: ( G_PKG_NAME ,

Line 277: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

273: ROLLBACK TO EAM_ASSET_LOG_PUB_SV;
274: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
275:
276: IF FND_MSG_PUB.Check_Msg_Level
277: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
278: THEN
279: FND_MSG_PUB.Add_Exc_Msg
280: ( G_PKG_NAME ,
281: l_api_name

Line 279: FND_MSG_PUB.Add_Exc_Msg

275:
276: IF FND_MSG_PUB.Check_Msg_Level
277: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
278: THEN
279: FND_MSG_PUB.Add_Exc_Msg
280: ( G_PKG_NAME ,
281: l_api_name
282: );
283: END IF;

Line 285: FND_MSG_PUB.get

281: l_api_name
282: );
283: END IF;
284:
285: FND_MSG_PUB.get
286: ( p_msg_index_out => x_msg_count ,
287: p_data => x_msg_data
288: );
289: