DBA Data[Home] [Help]

APPS.JTF_FM_IH_LOGGER_PVT dependencies on FND_MSG_PUB

Line 212: FND_MSG_PUB.initialize;

208:
209: BEGIN
210:
211: --Initialize message list if p_init_msg_list is TRUE.
212: FND_MSG_PUB.initialize;
213:
214: IF FND_MSG_PUB.Check_Msg_level (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN
215: FND_MESSAGE.Set_Name('JTF', 'JTF_FM_API_DEBUG_MESSAGE');
216: FND_MESSAGE.Set_Token('ARG1', l_full_name||': Start');

Line 214: IF FND_MSG_PUB.Check_Msg_level (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN

210:
211: --Initialize message list if p_init_msg_list is TRUE.
212: FND_MSG_PUB.initialize;
213:
214: IF FND_MSG_PUB.Check_Msg_level (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN
215: FND_MESSAGE.Set_Name('JTF', 'JTF_FM_API_DEBUG_MESSAGE');
216: FND_MESSAGE.Set_Token('ARG1', l_full_name||': Start');
217: FND_MSG_PUB.Add;
218: END IF;

Line 217: FND_MSG_PUB.Add;

213:
214: IF FND_MSG_PUB.Check_Msg_level (FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN
215: FND_MESSAGE.Set_Name('JTF', 'JTF_FM_API_DEBUG_MESSAGE');
216: FND_MESSAGE.Set_Token('ARG1', l_full_name||': Start');
217: FND_MSG_PUB.Add;
218: END IF;
219:
220: -- Initialize API return status to success
221: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 248: FND_MSG_PUB.Count_AND_Get

244: ROLLBACK TO moverequest;
245:
246: x_request_id := l_header_rec.hist_req_id;
247: x_return_status := FND_API.g_ret_sts_error ;
248: FND_MSG_PUB.Count_AND_Get
249: ( p_count => x_msg_count,
250: p_data => x_msg_data,
251: p_encoded => FND_API.G_FALSE
252: );

Line 259: FND_MSG_PUB.Count_AND_Get

255: ROLLBACK TO moverequest;
256:
257: x_request_id := l_header_rec.hist_req_id;
258: x_return_status := FND_API.g_ret_sts_unexp_error ;
259: FND_MSG_PUB.Count_AND_Get
260: ( p_count => x_msg_count,
261: p_data => x_msg_data,
262: p_encoded => FND_API.G_FALSE
263: );

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

265: WHEN OTHERS THEN
266: ROLLBACK TO moverequest;
267:
268: x_return_status := FND_API.g_ret_sts_unexp_error ;
269: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
270: THEN
271: null;
272: END IF;
273: FND_MSG_PUB.Count_AND_Get

Line 273: FND_MSG_PUB.Count_AND_Get

269: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
270: THEN
271: null;
272: END IF;
273: FND_MSG_PUB.Count_AND_Get
274: ( p_count => x_msg_count,
275: p_data => x_msg_data,
276: p_encoded => FND_API.G_FALSE
277: );

Line 426: FND_MSG_PUB.Count_AND_Get

422:
423: x_return_status := 'S';
424: x_request_id := l_header_rec.hist_req_id;
425:
426: FND_MSG_PUB.Count_AND_Get
427: ( p_count => x_msg_count,
428: p_data => x_msg_data,
429: p_encoded => FND_API.G_FALSE );
430:

Line 459: FND_MSG_PUB.Count_AND_Get

455: commit;
456:
457: x_request_id := l_header_rec.hist_req_id;
458: x_return_status := FND_API.g_ret_sts_error ;
459: FND_MSG_PUB.Count_AND_Get
460: ( p_count => x_msg_count,
461: p_data => x_msg_data,
462: p_encoded => FND_API.G_FALSE
463: );

Line 476: FND_MSG_PUB.Count_AND_Get

472: commit;
473:
474: x_request_id := l_header_rec.hist_req_id;
475: x_return_status := FND_API.g_ret_sts_unexp_error ;
476: FND_MSG_PUB.Count_AND_Get
477: ( p_count => x_msg_count,
478: p_data => x_msg_data,
479: p_encoded => FND_API.G_FALSE
480: );

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

488: Update_history(l_header_rec.hist_req_id, 'IHFAILED');
489: commit;
490:
491: x_return_status := FND_API.g_ret_sts_unexp_error ;
492: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
493: THEN
494: null;
495: END IF;
496: FND_MSG_PUB.Count_AND_Get

Line 496: FND_MSG_PUB.Count_AND_Get

492: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
493: THEN
494: null;
495: END IF;
496: FND_MSG_PUB.Count_AND_Get
497: ( p_count => x_msg_count,
498: p_data => x_msg_data,
499: p_encoded => FND_API.G_FALSE
500: );