DBA Data[Home] [Help]

APPS.POS_ASN_CREATE_PVT dependencies on FND_MSG_PUB

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

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

Line 694: fnd_msg_pub.ADD;

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

Line 696: fnd_msg_pub.ADD;

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

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

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

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

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

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

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

Line 1517: FND_MSG_PUB.initialize;

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

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

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