DBA Data[Home] [Help]

APPS.WSH_UTIL_CORE dependencies on FND_MSG_PUB

Line 1834: fnd_msg_pub.add;

1830: END IF;
1831:
1832: IF msg_buffer is not null
1833: OR p_message_type = 'S' THEN
1834: fnd_msg_pub.add;
1835: END IF;
1836: ELSE
1837: l_encoded_msg := fnd_message.get_encoded ;
1838: fnd_message.parse_encoded(l_encoded_msg, l_app_short_name , l_message_name );

Line 2132: x_count := FND_MSG_PUB.count_msg;

2128: --
2129: WSH_DEBUG_SV.log(l_module_name,'P_INIT_MSG_LIST',P_INIT_MSG_LIST);
2130: END IF;
2131: --
2132: x_count := FND_MSG_PUB.count_msg;
2133:
2134: FND_MSG_PUB.get( p_encoded => FND_API.G_FALSE,
2135: p_msg_index => x_count,
2136: p_data => x_summary,

Line 2134: FND_MSG_PUB.get( p_encoded => FND_API.G_FALSE,

2130: END IF;
2131: --
2132: x_count := FND_MSG_PUB.count_msg;
2133:
2134: FND_MSG_PUB.get( p_encoded => FND_API.G_FALSE,
2135: p_msg_index => x_count,
2136: p_data => x_summary,
2137: p_msg_index_out => l_tmp_out);
2138:

Line 2139: FND_MSG_PUB.get( p_encoded => FND_API.G_FALSE,

2135: p_msg_index => x_count,
2136: p_data => x_summary,
2137: p_msg_index_out => l_tmp_out);
2138:
2139: FND_MSG_PUB.get( p_encoded => FND_API.G_FALSE,
2140: p_msg_index => 1,
2141: p_data => l_tmp_buffer,
2142: p_msg_index_out => l_tmp_out);
2143:

Line 2148: FND_MSG_PUB.get( p_encoded => FND_API.G_FALSE,

2144: x_details := l_tmp_buffer;
2145:
2146: FOR i IN 2..x_count-1 LOOP
2147:
2148: FND_MSG_PUB.get( p_encoded => FND_API.G_FALSE,
2149: p_msg_index => i,
2150: p_data => l_tmp_buffer,
2151: p_msg_index_out => l_tmp_out);
2152:

Line 2173: FND_MSG_PUB.initialize;

2169:
2170: END LOOP;
2171:
2172: IF (p_init_msg_list = 'Y') THEN
2173: FND_MSG_PUB.initialize;
2174: END IF;
2175:
2176: --
2177: -- Debug Statements

Line 4101: fnd_msg_pub.add;

4097: x_msg_rec_count.s_count := 0;
4098: FOR i IN 1..WSH_INTEGRATION.G_MSG_TABLE.COUNT LOOP
4099: fnd_message.set_name('WSH','WSH_UTIL_MESSAGE_'||WSH_INTEGRATION.G_MSG_TABLE(i).MESSAGE_TYPE);
4100: fnd_message.set_token('MSG_TEXT',WSH_INTEGRATION.G_MSG_TABLE(i).MESSAGE_TEXT);
4101: fnd_msg_pub.add;
4102: IF ( WSH_INTEGRATION.G_MSG_TABLE(i).MESSAGE_TYPE = 'E' ) THEN
4103: x_msg_rec_count.e_count := x_msg_rec_count.e_count + 1 ;
4104: ELSIF ( WSH_INTEGRATION.G_MSG_TABLE(i).MESSAGE_TYPE = 'W' ) THEN
4105: x_msg_rec_count.w_count := x_msg_rec_count.w_count + 1 ;