DBA Data[Home] [Help]

APPS.IGW_PROP_RATES_PVT dependencies on FND_MSG_PUB

Line 47: fnd_msg_pub.initialize;

43: SAVEPOINT process_prop_rates;
44: END IF;
45:
46: if FND_API.to_boolean(nvl(p_init_msg_list, FND_API.G_FALSE)) then
47: fnd_msg_pub.initialize;
48: end if;
49:
50: x_return_status := 'S';
51: if (NOT FND_API.TO_BOOLEAN (p_validate_only)) then

Line 98: l_msg_count := FND_MSG_PUB.count_msg;

94:
95: x_return_status := l_return_status;
96: end if; -- p_validate_only = 'Y'
97:
98: l_msg_count := FND_MSG_PUB.count_msg;
99: If l_msg_count > 0 THEN
100: x_msg_count := l_msg_count;
101: If l_msg_count = 1 THEN
102: fnd_msg_pub.get

Line 102: fnd_msg_pub.get

98: l_msg_count := FND_MSG_PUB.count_msg;
99: If l_msg_count > 0 THEN
100: x_msg_count := l_msg_count;
101: If l_msg_count = 1 THEN
102: fnd_msg_pub.get
103: (p_encoded => FND_API.G_TRUE ,
104: p_msg_index => 1,
105: p_data => l_data,
106: p_msg_index_out => l_msg_index_out );

Line 120: fnd_msg_pub.add_exc_msg(p_pkg_name => G_package_name,

116: IF p_commit = FND_API.G_TRUE THEN
117: ROLLBACK TO process_prop_rates;
118: END IF;
119: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
120: fnd_msg_pub.add_exc_msg(p_pkg_name => G_package_name,
121: p_procedure_name => l_api_name,
122: p_error_text => SUBSTRB(SQLERRM,1,240));
123: fnd_msg_pub.count_and_get(p_count => x_msg_count
124: ,p_data => x_msg_data);

Line 123: fnd_msg_pub.count_and_get(p_count => x_msg_count

119: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
120: fnd_msg_pub.add_exc_msg(p_pkg_name => G_package_name,
121: p_procedure_name => l_api_name,
122: p_error_text => SUBSTRB(SQLERRM,1,240));
123: fnd_msg_pub.count_and_get(p_count => x_msg_count
124: ,p_data => x_msg_data);
125: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
126:
127: WHEN FND_API.G_EXC_ERROR THEN

Line 138: fnd_msg_pub.add_exc_msg(p_pkg_name => G_package_name,

134: IF p_commit = FND_API.G_TRUE THEN
135: ROLLBACK TO process_prop_rates;
136: END IF;
137: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
138: fnd_msg_pub.add_exc_msg(p_pkg_name => G_package_name,
139: p_procedure_name => l_api_name,
140: p_error_text => SUBSTRB(SQLERRM,1,240));
141: fnd_msg_pub.count_and_get(p_count => x_msg_count
142: ,p_data => x_msg_data);

Line 141: fnd_msg_pub.count_and_get(p_count => x_msg_count

137: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
138: fnd_msg_pub.add_exc_msg(p_pkg_name => G_package_name,
139: p_procedure_name => l_api_name,
140: p_error_text => SUBSTRB(SQLERRM,1,240));
141: fnd_msg_pub.count_and_get(p_count => x_msg_count
142: ,p_data => x_msg_data);
143: RAISE;
144:
145: