DBA Data[Home] [Help]

APPS.WSH_UTIL_CORE dependencies on FND_MSG_PUB

Line 1826: fnd_msg_pub.add;

1822: END IF;
1823:
1824: IF msg_buffer is not null
1825: OR p_message_type = 'S' THEN
1826: fnd_msg_pub.add;
1827: END IF;
1828: ELSE
1829: l_encoded_msg := fnd_message.get_encoded ;
1830: fnd_message.parse_encoded(l_encoded_msg, l_app_short_name , l_message_name );

Line 2124: x_count := FND_MSG_PUB.count_msg;

2120: --
2121: WSH_DEBUG_SV.log(l_module_name,'P_INIT_MSG_LIST',P_INIT_MSG_LIST);
2122: END IF;
2123: --
2124: x_count := FND_MSG_PUB.count_msg;
2125:
2126: FND_MSG_PUB.get( p_encoded => FND_API.G_FALSE,
2127: p_msg_index => x_count,
2128: p_data => x_summary,

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

2122: END IF;
2123: --
2124: x_count := FND_MSG_PUB.count_msg;
2125:
2126: FND_MSG_PUB.get( p_encoded => FND_API.G_FALSE,
2127: p_msg_index => x_count,
2128: p_data => x_summary,
2129: p_msg_index_out => l_tmp_out);
2130:

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

2127: p_msg_index => x_count,
2128: p_data => x_summary,
2129: p_msg_index_out => l_tmp_out);
2130:
2131: FND_MSG_PUB.get( p_encoded => FND_API.G_FALSE,
2132: p_msg_index => 1,
2133: p_data => l_tmp_buffer,
2134: p_msg_index_out => l_tmp_out);
2135:

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

2136: x_details := l_tmp_buffer;
2137:
2138: FOR i IN 2..x_count-1 LOOP
2139:
2140: FND_MSG_PUB.get( p_encoded => FND_API.G_FALSE,
2141: p_msg_index => i,
2142: p_data => l_tmp_buffer,
2143: p_msg_index_out => l_tmp_out);
2144:

Line 2165: FND_MSG_PUB.initialize;

2161:
2162: END LOOP;
2163:
2164: IF (p_init_msg_list = 'Y') THEN
2165: FND_MSG_PUB.initialize;
2166: END IF;
2167:
2168: --
2169: -- Debug Statements

Line 4065: fnd_msg_pub.add;

4061: x_msg_rec_count.s_count := 0;
4062: FOR i IN 1..WSH_INTEGRATION.G_MSG_TABLE.COUNT LOOP
4063: fnd_message.set_name('WSH','WSH_UTIL_MESSAGE_'||WSH_INTEGRATION.G_MSG_TABLE(i).MESSAGE_TYPE);
4064: fnd_message.set_token('MSG_TEXT',WSH_INTEGRATION.G_MSG_TABLE(i).MESSAGE_TEXT);
4065: fnd_msg_pub.add;
4066: IF ( WSH_INTEGRATION.G_MSG_TABLE(i).MESSAGE_TYPE = 'E' ) THEN
4067: x_msg_rec_count.e_count := x_msg_rec_count.e_count + 1 ;
4068: ELSIF ( WSH_INTEGRATION.G_MSG_TABLE(i).MESSAGE_TYPE = 'W' ) THEN
4069: x_msg_rec_count.w_count := x_msg_rec_count.w_count + 1 ;