DBA Data[Home] [Help]

APPS.EAM_WO_CHANGE_STATUS_PVT dependencies on FND_MSG_PUB

Line 161: fnd_msg_pub.initialize;

157: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug(to_char(sysdate,'DD-MON-YY HH:MI:SS')||' EAM_WO_CHANGE_STATUS_PVT.change_status: Initializing Message list for Status Change'); END IF;
158:
159: -- Initialize message list if p_init_msg_list is set to TRUE.
160: IF fnd_api.to_boolean(p_init_msg_list) THEN
161: fnd_msg_pub.initialize;
162: END IF;
163:
164: -- Initialize API return status to success
165: x_return_status := fnd_api.g_ret_sts_success;

Line 994: fnd_msg_pub.count_and_get(

990: /***********************************************************/
991: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug(to_char(sysdate,'DD-MON-YY HH:MI:SS')||' EAM_WO_CHANGE_STATUS_PVT.change_status: Exiting Status Change API'); END IF;
992:
993: -- Standard call to get message count and if count is 1, get message info.
994: fnd_msg_pub.count_and_get(
995: p_count => x_msg_count
996: ,p_data => x_msg_data);
997:
998: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug(to_char(sysdate,'DD-MON-YY HH:MI:SS')||' EAM_WO_CHANGE_STATUS_PVT.change_status: Schedule change request id '||l_request_id); END IF;

Line 1006: fnd_msg_pub.count_and_get(

1002: EXCEPTION
1003: WHEN fnd_api.g_exc_error THEN
1004: ROLLBACK TO change_status;
1005: x_return_status := fnd_api.g_ret_sts_error;
1006: fnd_msg_pub.count_and_get(
1007: p_count => x_msg_count
1008: ,p_data => x_msg_data);
1009:
1010: WHEN CHANGE_STATUS_NOT_POSSIBLE THEN

Line 1044: fnd_msg_pub.count_and_get(

1040: WHEN fnd_api.g_exc_unexpected_error THEN
1041: ROLLBACK TO change_status;
1042: x_return_status := fnd_api.g_ret_sts_unexp_error;
1043:
1044: fnd_msg_pub.count_and_get(
1045: p_count => x_msg_count
1046: ,p_data => x_msg_data);
1047:
1048: WHEN OTHERS THEN

Line 1051: IF fnd_msg_pub.check_msg_level(

1047:
1048: WHEN OTHERS THEN
1049: ROLLBACK TO change_status;
1050: x_return_status := fnd_api.g_ret_sts_unexp_error;
1051: IF fnd_msg_pub.check_msg_level(
1052: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1053: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
1054: END IF;
1055:

Line 1052: fnd_msg_pub.g_msg_lvl_unexp_error) THEN

1048: WHEN OTHERS THEN
1049: ROLLBACK TO change_status;
1050: x_return_status := fnd_api.g_ret_sts_unexp_error;
1051: IF fnd_msg_pub.check_msg_level(
1052: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1053: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
1054: END IF;
1055:
1056: fnd_msg_pub.count_and_get(

Line 1053: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);

1049: ROLLBACK TO change_status;
1050: x_return_status := fnd_api.g_ret_sts_unexp_error;
1051: IF fnd_msg_pub.check_msg_level(
1052: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1053: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
1054: END IF;
1055:
1056: fnd_msg_pub.count_and_get(
1057: p_count => x_msg_count

Line 1056: fnd_msg_pub.count_and_get(

1052: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1053: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
1054: END IF;
1055:
1056: fnd_msg_pub.count_and_get(
1057: p_count => x_msg_count
1058: ,p_data => x_msg_data);
1059:
1060: END change_status;

Line 1126: fnd_msg_pub.add;

1122: WHEN OTHERS THEN /*Added for FP 6814440*/
1123: l_wip_error_flag :=1;
1124: l_message := SUBSTR(FND_MESSAGE.get,1,500);
1125: FND_MESSAGE.SET_NAME('WIP', 'WIP_RELEASE_PO_MOVE');
1126: fnd_msg_pub.add;
1127: EAM_ERROR_MESSAGE_PVT.Add_Message
1128: ( p_mesg_text => l_message
1129: , p_entity_id => 1
1130: , p_entity_index => 1