DBA Data[Home] [Help]

APPS.WMS_UT_PKG dependencies on FND_MSG_PUB

Line 1293: l_message := fnd_msg_pub.get(i,'F');

1289: x_msg_count => l_msg_count,
1290: x_msg_data => l_msg_data
1291: );
1292: FOR i in 1..l_msg_count LOOP
1293: l_message := fnd_msg_pub.get(i,'F');
1294: print_debug('Move order header err : ' || l_message);
1295: END LOOP;
1296: l_mo_header_id := l_trohdr_rec.header_id;
1297: IF nvl(l_mo_header_id,-1) < 1 OR nvl(l_mo_header_id,1000000000001) > 100000000000 THEN

Line 1362: l_message := fnd_msg_pub.get(i,'F');

1358: );
1359: print_debug('After calling create move order lines - ' || l_trolin_tbl.count);
1360: /* FOR i in 1..nvl(l_msg_count,0) LOOP
1361: print_debug('After calling create move order lines - ' || l_trolin_tbl.count);
1362: l_message := fnd_msg_pub.get(i,'F');
1363: print_debug('Move order Line err : ' || l_message);
1364: END LOOP;*/
1365: print_debug('After calling create move order lines - ' || l_trolin_tbl.count);
1366: END IF;

Line 1743: fnd_msg_pub.initialize;

1739:
1740: END LOOP;
1741:
1742: IF l_so_orders IS NOT NULL AND (l_so_orders.count > 0) THEN
1743: fnd_msg_pub.initialize;
1744: oe_msg_pub.initialize;
1745:
1746: OE_STANDARD_WF.RESET_APPS_CONTEXT_OFF;
1747:

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

1773: );
1774: print_debug('Error msg: '||substr(l_msg_data,1,200));
1775: end loop;
1776:
1777: fnd_msg_pub.count_and_get( p_encoded => 'F'
1778: , p_count => l_msg_count
1779: , p_data => l_msg_data);
1780: print_debug('no. of FND messages :'||l_msg_count);
1781: for k in 1 .. l_msg_count loop

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

1778: , p_count => l_msg_count
1779: , p_data => l_msg_data);
1780: print_debug('no. of FND messages :'||l_msg_count);
1781: for k in 1 .. l_msg_count loop
1782: l_msg_data := fnd_msg_pub.get( p_msg_index => k,
1783: p_encoded => 'F'
1784: );
1785: print_debug(substr(l_msg_data,1,200));
1786: end loop;