DBA Data[Home] [Help]

APPS.PSA_BC_XLA_PUB dependencies on FND_MSG_PUB

Line 111: FND_MSG_PUB.initialize;

107: psa_utils.debug_other_string(g_state_level,l_api_name,'User Id = '|| P_user_id);
108: psa_utils.debug_other_string(g_state_level,l_api_name,'User Responsibility Id = '|| P_user_resp_id);
109:
110: IF (FND_API.to_boolean(NVl(p_init_msg_list,FND_API.G_FALSE))) THEN
111: FND_MSG_PUB.initialize;
112: END IF;
113:
114: psa_utils.debug_other_string(g_state_level,l_api_name,'Checking for API compatibility..');
115: --

Line 159: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE

155: WHEN FND_API.G_EXC_ERROR THEN
156: psa_utils.debug_other_string(g_error_level,l_api_name,'EXCEPTION: '|| SQLERRM(sqlcode));
157: psa_utils.debug_other_string(g_error_level,l_api_name,'Error in Budgetary_control Procedure' );
158: x_return_status := FND_API.G_RET_STS_ERROR ;
159: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE
160: ,p_count => x_msg_count
161: ,p_data => x_msg_data);
162:
163: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 166: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE

162:
163: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
164: psa_utils.debug_other_string(g_unexp_level,l_api_name,'ERROR: Unexpected Error in budgetary_control Procedure' );
165: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
166: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE
167: ,p_count => x_msg_count
168: ,p_data => x_msg_data);
169:
170: WHEN OTHERS THEN

Line 173: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN

169:
170: WHEN OTHERS THEN
171:
172: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
173: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
174: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);
175: END IF;
176: psa_utils.debug_other_string(g_unexp_level,l_api_name,'EXCEPTION: '|| SQLERRM(sqlcode));
177: psa_utils.debug_other_string(g_unexp_level,l_api_name,'Error in budgetary_control Procedure' );

Line 174: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);

170: WHEN OTHERS THEN
171:
172: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
173: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
174: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);
175: END IF;
176: psa_utils.debug_other_string(g_unexp_level,l_api_name,'EXCEPTION: '|| SQLERRM(sqlcode));
177: psa_utils.debug_other_string(g_unexp_level,l_api_name,'Error in budgetary_control Procedure' );
178: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE

Line 178: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE

174: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);
175: END IF;
176: psa_utils.debug_other_string(g_unexp_level,l_api_name,'EXCEPTION: '|| SQLERRM(sqlcode));
177: psa_utils.debug_other_string(g_unexp_level,l_api_name,'Error in budgetary_control Procedure' );
178: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE
179: ,p_count => x_msg_count
180: ,p_data => x_msg_data);
181:
182: