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;

Line 1935: fnd_msg_pub.add;

1931:
1932: IF c_ib_instance%NOTFOUND THEN
1933: fnd_message.set_name('CSI','CSI_API_INVALID_INSTANCE_ID');
1934: fnd_message.set_token('INSTANCE_ID',p_instance_id);
1935: fnd_msg_pub.add;
1936: RAISE fnd_api.g_exc_error;
1937: END IF;
1938: CLOSE c_ib_instance;
1939:

Line 2060: IF FND_MSG_PUB.Check_Msg_Level

2056: EXCEPTION
2057: WHEN fnd_api.g_exc_error THEN
2058: x_return_status := FND_API.G_RET_STS_ERROR;
2059:
2060: IF FND_MSG_PUB.Check_Msg_Level
2061: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2062: THEN
2063: FND_MSG_PUB.Add_Exc_Msg
2064: ( 'CSI_UTILITY_GRP' ,

Line 2061: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

2057: WHEN fnd_api.g_exc_error THEN
2058: x_return_status := FND_API.G_RET_STS_ERROR;
2059:
2060: IF FND_MSG_PUB.Check_Msg_Level
2061: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2062: THEN
2063: FND_MSG_PUB.Add_Exc_Msg
2064: ( 'CSI_UTILITY_GRP' ,
2065: 'get_instance_install_location'

Line 2063: FND_MSG_PUB.Add_Exc_Msg

2059:
2060: IF FND_MSG_PUB.Check_Msg_Level
2061: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2062: THEN
2063: FND_MSG_PUB.Add_Exc_Msg
2064: ( 'CSI_UTILITY_GRP' ,
2065: 'get_instance_install_location'
2066: );
2067: END IF;

Line 2069: FND_MSG_PUB.Count_And_Get

2065: 'get_instance_install_location'
2066: );
2067: END IF;
2068:
2069: FND_MSG_PUB.Count_And_Get
2070: ( p_count => x_msg_count,
2071: p_data => x_msg_data
2072: );
2073:

Line 2077: IF FND_MSG_PUB.Check_Msg_Level

2073:
2074: WHEN OTHERS THEN
2075: x_return_status := FND_API.G_RET_STS_ERROR ;
2076:
2077: IF FND_MSG_PUB.Check_Msg_Level
2078: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2079: THEN
2080: FND_MSG_PUB.Add_Exc_Msg
2081: ( 'CSI_UTILITY_GRP' ,

Line 2078: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

2074: WHEN OTHERS THEN
2075: x_return_status := FND_API.G_RET_STS_ERROR ;
2076:
2077: IF FND_MSG_PUB.Check_Msg_Level
2078: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2079: THEN
2080: FND_MSG_PUB.Add_Exc_Msg
2081: ( 'CSI_UTILITY_GRP' ,
2082: 'get_instance_install_location'

Line 2080: FND_MSG_PUB.Add_Exc_Msg

2076:
2077: IF FND_MSG_PUB.Check_Msg_Level
2078: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2079: THEN
2080: FND_MSG_PUB.Add_Exc_Msg
2081: ( 'CSI_UTILITY_GRP' ,
2082: 'get_instance_install_location'
2083: );
2084: END IF;

Line 2086: FND_MSG_PUB.Count_And_Get

2082: 'get_instance_install_location'
2083: );
2084: END IF;
2085:
2086: FND_MSG_PUB.Count_And_Get
2087: ( p_count => x_msg_count,
2088: p_data => x_msg_data
2089: );
2090: END get_instance_install_location;