DBA Data[Home] [Help]

APPS.POS_ASN_CREATE_PVT dependencies on FND_MSG_PUB

Line 637: x_return_msg := fnd_msg_pub.get(l_ret_count,'F');

633: if(l_valid_sr = true) then
634: x_return_code := 'T';
635: else
636: x_return_code := 'F';
637: x_return_msg := fnd_msg_pub.get(l_ret_count,'F');
638: end if;
639: x_return_status := FND_API.G_RET_STS_SUCCESS;
640:
641: exception when others then

Line 693: fnd_msg_pub.ADD;

689:
690: --can only reuse the LPNs that have a context of 5
691: if(l_lpn_context is not null AND l_lpn_context <> 5) then
692: fnd_message.set_name('WMS', 'WMS_CONT_DUPLICATE_LPN');
693: fnd_msg_pub.ADD;
694: fnd_message.set_name('WMS', 'WMS_CONT_INVALID_LPN');
695: fnd_msg_pub.ADD;
696: FND_MSG_PUB.Count_And_Get(p_count => l_msg_count,
697: p_data => l_msg_data);

Line 695: fnd_msg_pub.ADD;

691: if(l_lpn_context is not null AND l_lpn_context <> 5) then
692: fnd_message.set_name('WMS', 'WMS_CONT_DUPLICATE_LPN');
693: fnd_msg_pub.ADD;
694: fnd_message.set_name('WMS', 'WMS_CONT_INVALID_LPN');
695: fnd_msg_pub.ADD;
696: FND_MSG_PUB.Count_And_Get(p_count => l_msg_count,
697: p_data => l_msg_data);
698: l_ans := false;
699: end if;

Line 696: FND_MSG_PUB.Count_And_Get(p_count => l_msg_count,

692: fnd_message.set_name('WMS', 'WMS_CONT_DUPLICATE_LPN');
693: fnd_msg_pub.ADD;
694: fnd_message.set_name('WMS', 'WMS_CONT_INVALID_LPN');
695: fnd_msg_pub.ADD;
696: FND_MSG_PUB.Count_And_Get(p_count => l_msg_count,
697: p_data => l_msg_data);
698: l_ans := false;
699: end if;
700: end if;

Line 708: l_error_msg := l_error_msg || ' ' || fnd_msg_pub.get(l_msg_count-i+1,'F');

704: else
705: x_return_code := 'F';
706: for i in 1..l_msg_count
707: loop
708: l_error_msg := l_error_msg || ' ' || fnd_msg_pub.get(l_msg_count-i+1,'F');
709: end loop;
710: x_return_msg := l_error_msg;
711: end if;
712:

Line 881: x_return_msg := fnd_msg_pub.get(l_msg_count,'F');

877: if(l_ans = true) then
878: x_return_code := 'T';
879: else
880: x_return_code := 'F';
881: x_return_msg := fnd_msg_pub.get(l_msg_count,'F');
882: end if;
883:
884: x_return_status := FND_API.G_RET_STS_SUCCESS;
885: EXCEPTION WHEN OTHERS THEN

Line 1516: FND_MSG_PUB.initialize;

1512: BEGIN
1513:
1514: -- Clear global message table.
1515: IF (p_init_msg_list = 'Y') THEN
1516: FND_MSG_PUB.initialize;
1517: END IF;
1518:
1519:
1520: -- Construct the record to pass in WSH api.

Line 1561: fnd_msg_pub.get( p_encoded => FND_API.G_FALSE, p_msg_index => l_index );

1557: FOR l_index IN 1.. l_msg_count LOOP
1558:
1559: x_out_invalid_tbl.extend;
1560: x_out_invalid_tbl(x_out_invalid_tbl.last) :=
1561: fnd_msg_pub.get( p_encoded => FND_API.G_FALSE, p_msg_index => l_index );
1562: END LOOP;
1563:
1564: END IF;
1565: