DBA Data[Home] [Help]

APPS.AMW_COMPONENTS_PKG dependencies on FND_MSG_PUB

Line 115: fnd_msg_pub.initialize;

111: END IF;
112:
113: -- initialize message list if p_init_msg_list is set to true
114: if FND_API.to_boolean(nvl(p_init_msg_list, FND_API.G_FALSE)) then
115: fnd_msg_pub.initialize;
116: end if;
117:
118: -- initialize return status to success
119: x_return_status := fnd_api.g_ret_sts_success;

Line 178: fnd_msg_pub.count_and_get(p_count => x_msg_count,

174: END IF;
175:
176: x_return_status := FND_API.G_RET_STS_ERROR;
177:
178: fnd_msg_pub.count_and_get(p_count => x_msg_count,
179: p_data => x_msg_data);
180:
181: WHEN OTHERS THEN
182: IF p_commit = FND_API.G_TRUE THEN

Line 188: fnd_msg_pub.add_exc_msg(p_pkg_name => 'AMW_COMPONENTS_PKG',

184: END IF;
185:
186: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
187:
188: fnd_msg_pub.add_exc_msg(p_pkg_name => 'AMW_COMPONENTS_PKG',
189: p_procedure_name => 'PROCESS_COMPONENTS',
190: p_error_text => SUBSTRB(SQLERRM,1,240));
191:
192: fnd_msg_pub.count_and_get(p_count => x_msg_count,

Line 192: fnd_msg_pub.count_and_get(p_count => x_msg_count,

188: fnd_msg_pub.add_exc_msg(p_pkg_name => 'AMW_COMPONENTS_PKG',
189: p_procedure_name => 'PROCESS_COMPONENTS',
190: p_error_text => SUBSTRB(SQLERRM,1,240));
191:
192: fnd_msg_pub.count_and_get(p_count => x_msg_count,
193: p_data => x_msg_data);
194:
195: END PROCESS_COMPONENTS;
196: