DBA Data[Home] [Help]

APPS.AHL_PRD_PRINT_PVT dependencies on FND_MSG_PUB

Line 460: FND_MSG_PUB.initialize;

456: END IF;
457:
458: -- Initialize message list if p_init_msg_list is set to TRUE.
459: IF FND_API.to_boolean(p_init_msg_list) THEN
460: FND_MSG_PUB.initialize;
461: END IF;
462:
463: -- Open a temporary lob for merging the contents.
464: dbms_lob.createTemporary( l_merged_lob, true );

Line 1046: IF Fnd_Msg_Pub.check_msg_level (Fnd_Msg_Pub.g_msg_lvl_unexp_error)

1042: 'xml data ->'||dbms_lob.substr(x_xml_data, dbms_lob.getlength(x_xml_data), 1)
1043: );
1044: END IF;
1045:
1046: IF Fnd_Msg_Pub.check_msg_level (Fnd_Msg_Pub.g_msg_lvl_unexp_error)
1047: THEN
1048: Fnd_Msg_Pub.add_exc_msg (G_PKG_NAME, l_api_name);
1049: END IF;
1050:

Line 1048: Fnd_Msg_Pub.add_exc_msg (G_PKG_NAME, l_api_name);

1044: END IF;
1045:
1046: IF Fnd_Msg_Pub.check_msg_level (Fnd_Msg_Pub.g_msg_lvl_unexp_error)
1047: THEN
1048: Fnd_Msg_Pub.add_exc_msg (G_PKG_NAME, l_api_name);
1049: END IF;
1050:
1051: Fnd_Msg_Pub.count_and_get (
1052: p_encoded => Fnd_Api.g_false,

Line 1051: Fnd_Msg_Pub.count_and_get (

1047: THEN
1048: Fnd_Msg_Pub.add_exc_msg (G_PKG_NAME, l_api_name);
1049: END IF;
1050:
1051: Fnd_Msg_Pub.count_and_get (
1052: p_encoded => Fnd_Api.g_false,
1053: p_count => x_msg_count,
1054: p_data => x_msg_data
1055: );

Line 1246: FND_MSG_PUB.Initialize;

1242: -- this step is not required. peforming since was not getting the output.
1243: -- dbms_application_info.set_client_info('600');
1244:
1245: -- Initialize error message stack by default
1246: FND_MSG_PUB.Initialize;
1247:
1248: fnd_file.put_line(fnd_file.log, '*************API input parameters**************');
1249: fnd_file.put_line(fnd_file.log, 'API inputs p_api_version -> '||p_api_version);
1250: fnd_file.put_line(fnd_file.log, 'API inputs p_visit_id -> '||p_visit_id);

Line 1355: l_msg_count := FND_MSG_PUB.Count_Msg;

1351: l_clob_size := l_clob_size - l_chunk_size;
1352: l_offset := l_offset + l_chunk_size;
1353: END LOOP;
1354:
1355: l_msg_count := FND_MSG_PUB.Count_Msg;
1356: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS)
1357: THEN
1358: retcode := 2; -- error based only on return status
1359: ELSIF (l_msg_count > 0 AND l_return_status = FND_API.G_RET_STS_SUCCESS)