DBA Data[Home] [Help]

APPS.INV_COMINGLING_UTILS dependencies on FND_MSG_PUB

Line 111: fnd_msg_pub.add;

107: x_return_status := fnd_api.g_ret_sts_success;
108:
109: if p_cost_group_id is null then
110: fnd_message.set_name('INV', 'INV_MISSING_REQUIRED_PARAMETER');
111: fnd_msg_pub.add;
112: RAISE fnd_api.g_exc_error;
113: end if;
114:
115: BEGIN

Line 557: fnd_msg_pub.count_and_get

553: EXCEPTION
554:
555: WHEN fnd_api.g_exc_error THEN
556: x_return_status := fnd_api.g_ret_sts_error;
557: fnd_msg_pub.count_and_get
558: ( p_count => x_msg_count,
559: p_data => x_msg_data
560: );
561: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));

Line 564: fnd_msg_pub.count_and_get

560: );
561: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));
562: WHEN fnd_api.g_exc_unexpected_error THEN
563: x_return_status := fnd_api.g_ret_sts_unexp_error ;
564: fnd_msg_pub.count_and_get
565: ( p_count => x_msg_count,
566: p_data => x_msg_data
567: );
568: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));

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

568: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));
569:
570: WHEN OTHERS THEN
571: x_return_status := fnd_api.g_ret_sts_unexp_error;
572: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
573: fnd_msg_pub.add_exc_msg ('inv_comingling_utils'
574: , 'comingle_check'
575: );
576: END IF;

Line 573: fnd_msg_pub.add_exc_msg ('inv_comingling_utils'

569:
570: WHEN OTHERS THEN
571: x_return_status := fnd_api.g_ret_sts_unexp_error;
572: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
573: fnd_msg_pub.add_exc_msg ('inv_comingling_utils'
574: , 'comingle_check'
575: );
576: END IF;
577: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));

Line 578: fnd_msg_pub.count_and_get

574: , 'comingle_check'
575: );
576: END IF;
577: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));
578: fnd_msg_pub.count_and_get
579: ( p_count => x_msg_count,
580: p_data => x_msg_data
581: );
582: end comingle_check;

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

613: EXCEPTION
614:
615: WHEN OTHERS THEN
616: x_return_status := fnd_api.g_ret_sts_unexp_error;
617: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
618: fnd_msg_pub.add_exc_msg ('inv_comingling_utils'
619: , 'comingle_check'
620: );
621: END IF;

Line 618: fnd_msg_pub.add_exc_msg ('inv_comingling_utils'

614:
615: WHEN OTHERS THEN
616: x_return_status := fnd_api.g_ret_sts_unexp_error;
617: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
618: fnd_msg_pub.add_exc_msg ('inv_comingling_utils'
619: , 'comingle_check'
620: );
621: END IF;
622: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));

Line 623: fnd_msg_pub.count_and_get

619: , 'comingle_check'
620: );
621: END IF;
622: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));
623: fnd_msg_pub.count_and_get
624: ( p_count => x_msg_count,
625: p_data => x_msg_data);
626: IF mmtt_cur%isopen THEN
627: CLOSE mmtt_cur;

Line 892: fnd_msg_pub.add;

888: END IF;
889:
890: fnd_message.set_name('INV', 'INV_COMINGLE_FAIL');
891: FND_MESSAGE.SET_TOKEN('CG', l_comingle_cg);
892: fnd_msg_pub.add;
893: RETURN;
894:
895: END IF;--l_comingling_occurs = 'Y'
896:

Line 914: fnd_msg_pub.count_and_get

910: EXCEPTION
911:
912: WHEN fnd_api.g_exc_error THEN
913: x_return_status := fnd_api.g_ret_sts_error;
914: fnd_msg_pub.count_and_get
915: ( p_count => x_msg_count,
916: p_data => x_msg_data
917: );
918: IF mtlt_cur%isopen THEN

Line 924: fnd_msg_pub.count_and_get

920: END IF;
921: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));
922: WHEN fnd_api.g_exc_unexpected_error THEN
923: x_return_status := fnd_api.g_ret_sts_unexp_error ;
924: fnd_msg_pub.count_and_get
925: ( p_count => x_msg_count,
926: p_data => x_msg_data
927: );
928: IF mtlt_cur%isopen THEN

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

930: END IF;
931: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));
932: WHEN OTHERS THEN
933: x_return_status := fnd_api.g_ret_sts_unexp_error;
934: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
935: fnd_msg_pub.add_exc_msg ('inv_comingling_utils'
936: , 'comingle_check'
937: );
938: END IF;

Line 935: fnd_msg_pub.add_exc_msg ('inv_comingling_utils'

931: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));
932: WHEN OTHERS THEN
933: x_return_status := fnd_api.g_ret_sts_unexp_error;
934: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
935: fnd_msg_pub.add_exc_msg ('inv_comingling_utils'
936: , 'comingle_check'
937: );
938: END IF;
939: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));

Line 940: fnd_msg_pub.count_and_get

936: , 'comingle_check'
937: );
938: END IF;
939: --dbms_output.put_line(replace(x_msg_data,chr(0),' '));
940: fnd_msg_pub.count_and_get
941: ( p_count => x_msg_count,
942: p_data => x_msg_data
943: );
944: IF mtlt_cur%isopen THEN