DBA Data[Home] [Help]

APPS.CSI_UTILITY_GRP dependencies on FND_MSG_PUB

Line 98: FND_MSG_PUB.Add;

94: -- srramakr modified to look at csi_gen_utility_pvt since ib_active in current package
95: -- has Pragma restriction. (Cursor optimization)
96: IF NOT csi_gen_utility_pvt.IB_ACTIVE THEN
97: FND_MESSAGE.Set_Name('CSI', 'CSI_IB_NOT_ACTIVE');
98: FND_MSG_PUB.Add;
99: RAISE FND_API.G_Exc_Error;
100: END IF;
101: EXCEPTION
102: WHEN fnd_api.g_exc_error THEN

Line 110: FND_MSG_PUB.Add;

106: WHEN others THEN
107: FND_MESSAGE.Set_Name('CSI', 'CSI_UNEXP_SQL_ERROR');
108: FND_MESSAGE.Set_Token('API_NAME', 'Check_IB_Active');
109: FND_MESSAGE.Set_Token('SQL_ERROR', sqlerrm);
110: FND_MSG_PUB.Add;
111:
112: RAISE fnd_api.g_exc_error;
113: END check_ib_active;
114:

Line 1085: l_error_message := l_error_message || fnd_msg_pub.get(l_msg_index,FND_API.G_FALSE);

1081:
1082: IF NOT l_return_status = FND_API.G_RET_STS_SUCCESS THEN
1083: l_msg_index := 1;
1084: WHILE l_msg_count > 0 loop
1085: l_error_message := l_error_message || fnd_msg_pub.get(l_msg_index,FND_API.G_FALSE);
1086: l_msg_index := l_msg_index + 1;
1087: l_msg_count := l_msg_count - 1;
1088: END LOOP;
1089: RAISE fnd_api.g_exc_error;

Line 1229: l_error_message := l_error_message || fnd_msg_pub.get(l_msg_index,FND_API.G_FALSE);

1225:
1226: IF NOT l_return_status = FND_API.G_RET_STS_SUCCESS THEN
1227: l_msg_index := 1;
1228: WHILE l_msg_count > 0 loop
1229: l_error_message := l_error_message || fnd_msg_pub.get(l_msg_index,FND_API.G_FALSE);
1230: l_msg_index := l_msg_index + 1;
1231: l_msg_count := l_msg_count - 1;
1232: END LOOP;
1233: RAISE fnd_api.g_exc_error;