DBA Data[Home] [Help]

APPS.OE_RETROBILL_PVT dependencies on FND_MSG_PUB

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

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

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

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

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

975: oe_debug_pub.add(substr(x_msg_data,1,255));
976: oe_debug_pub.add('Error msg: '||substr(x_msg_data,1,200));
977: end loop;
978:
979: fnd_msg_pub.count_and_get( p_encoded => 'F'
980: , p_count => x_msg_count
981: , p_data => x_msg_data);
982: --oe_debug_pub.add('no. of FND messages :'||x_msg_count,1);
983: oe_debug_pub.add('no. of FND messages :'||x_msg_count);

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

981: , p_data => x_msg_data);
982: --oe_debug_pub.add('no. of FND messages :'||x_msg_count,1);
983: oe_debug_pub.add('no. of FND messages :'||x_msg_count);
984: for k in 1 .. x_msg_count loop
985: x_msg_data := fnd_msg_pub.get( p_msg_index => k,
986: p_encoded => 'F'
987: );
988: oe_debug_pub.add('Error msg: '||substr(x_msg_data,1,200));
989: oe_debug_pub.add(substr(x_msg_data,1,255));