DBA Data[Home] [Help]

APPS.GML_MOBILE_RECEIPT dependencies on FND_MSG_PUB

Line 421: fnd_msg_pub.count_and_get (

417:
418: EXCEPTION
419: WHEN OTHERS THEN
420: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
421: fnd_msg_pub.count_and_get (
422: p_encoded => FND_API.G_FALSE
423: , p_count => l_msg_count
424: , p_data => x_msg_data );
425: END insert_lot;

Line 443: fnd_msg_pub.delete_msg;

439:
440: clear_lot_rec;
441:
442: -- clear the message stack.
443: fnd_msg_pub.delete_msg;
444:
445: COMMIT;
446: END rcv_clear_global;
447:

Line 527: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

523: EXCEPTION
524: WHEN OTHERS THEN
525: x_return_status := fnd_api.g_ret_sts_unexp_error;
526:
527: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
528: fnd_msg_pub.add_exc_msg(g_pkg_name, 'get_uom_code');
529: END IF;
530:
531: END get_uom_code;

Line 528: fnd_msg_pub.add_exc_msg(g_pkg_name, 'get_uom_code');

524: WHEN OTHERS THEN
525: x_return_status := fnd_api.g_ret_sts_unexp_error;
526:
527: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
528: fnd_msg_pub.add_exc_msg(g_pkg_name, 'get_uom_code');
529: END IF;
530:
531: END get_uom_code;
532:

Line 589: l_msg_data := fnd_msg_pub.get(I,'F');

585: IF (x_return_status = 'S') THEN
586: x_lot_id := l_ic_lots_mst_row.lot_id;
587: ELSE
588: For I IN 1..l_msg_count LOOP
589: l_msg_data := fnd_msg_pub.get(I,'F');
590: -- FND_MESSAGE.SET_STRING (x_msg_data);
591:
592: ---dbms_output.put_line('error = '||l_msg_data);
593: END LOOP;

Line 610: fnd_msg_pub.Count_And_Get

606: IS
607: l_message VARCHAR2(2000);
608: l_msg_count NUMBER;
609: BEGIN
610: fnd_msg_pub.Count_And_Get
611: (p_encoded => FND_API.g_false,
612: p_count => l_msg_count,
613: p_data => l_message
614: );

Line 618: l_message := substr((l_message || '|' || FND_MSG_PUB.GET(p_msg_index => l_msg_count - i + 1,

614: );
615:
616: IF l_msg_count > 1 THEN
617: FOR i IN 1..l_msg_count LOOP
618: l_message := substr((l_message || '|' || FND_MSG_PUB.GET(p_msg_index => l_msg_count - i + 1,
619: p_encoded => FND_API.g_false)),1,2000);
620: END LOOP;
621: END IF;
622:

Line 623: fnd_msg_pub.delete_msg;

619: p_encoded => FND_API.g_false)),1,2000);
620: END LOOP;
621: END IF;
622:
623: fnd_msg_pub.delete_msg;
624:
625: x_message := l_message;
626:
627: EXCEPTION