DBA Data[Home] [Help]

APPS.OE_RETROBILL_PVT dependencies on FND_MSG_PUB

Line 272: fnd_msg_pub.count_and_get( p_encoded => 'F'

268: oe_debug_pub.add(substr(l_msg_data,1,255));
269: oe_debug_pub.add('Error msg: '||substr(l_msg_data,1,200));
270: end loop;
271:
272: fnd_msg_pub.count_and_get( p_encoded => 'F'
273: ,p_count => l_msg_count
274: ,p_data => l_msg_data);
275:
276: --oe_debug_pub.add('no. of FND messages :'||l_msg_count,1);

Line 280: l_msg_data := fnd_msg_pub.get( p_msg_index => k,

276: --oe_debug_pub.add('no. of FND messages :'||l_msg_count,1);
277: oe_debug_pub.add('no. of FND messages :'||l_msg_count);
278:
279: for k in 1 .. l_msg_count loop
280: l_msg_data := fnd_msg_pub.get( p_msg_index => k,
281: p_encoded => 'F'
282: );
283: oe_debug_pub.add('Error msg: '||substr(l_msg_data,1,200));
284: oe_debug_pub.add(substr(l_msg_data,1,255));

Line 995: fnd_msg_pub.count_and_get( p_encoded => 'F'

991: oe_debug_pub.add(substr(x_msg_data,1,255));
992: oe_debug_pub.add('Error msg: '||substr(x_msg_data,1,200));
993: end loop;
994:
995: fnd_msg_pub.count_and_get( p_encoded => 'F'
996: , p_count => x_msg_count
997: , p_data => x_msg_data);
998: --oe_debug_pub.add('no. of FND messages :'||x_msg_count,1);
999: oe_debug_pub.add('no. of FND messages :'||x_msg_count);

Line 1001: x_msg_data := fnd_msg_pub.get( p_msg_index => k,

997: , p_data => x_msg_data);
998: --oe_debug_pub.add('no. of FND messages :'||x_msg_count,1);
999: oe_debug_pub.add('no. of FND messages :'||x_msg_count);
1000: for k in 1 .. x_msg_count loop
1001: x_msg_data := fnd_msg_pub.get( p_msg_index => k,
1002: p_encoded => 'F'
1003: );
1004: oe_debug_pub.add('Error msg: '||substr(x_msg_data,1,200));
1005: oe_debug_pub.add(substr(x_msg_data,1,255));