DBA Data[Home] [Help]

APPS.HZ_DYN_VALIDATION dependencies on HZ_DYN_VALIDATION

Line 1: PACKAGE BODY hz_dyn_validation AS

1: PACKAGE BODY hz_dyn_validation AS
2: /*$Header: ARHDVSB.pls 120.5 2005/10/30 03:52:05 appldev noship $ */
3:
4: -- declaration of private global variables
5: g_debug_count NUMBER := 0;

Line 364: RAISE hz_dyn_validation.null_profile_value;

360: IF l_procedure_name IS NULL THEN
361: fnd_message.set_name('AR', 'HZ_DV_NULL_PROFILE_VALUE');
362: fnd_message.set_token('PROFILE', x_profile_name);
363: fnd_msg_pub.add;
364: RAISE hz_dyn_validation.null_profile_value;
365: END IF;
366:
367: -- Debug info.
368: IF fnd_log.level_statement>=fnd_log.g_current_runtime_level THEN

Line 389: RAISE hz_dyn_validation.execution_error;

385: -- Execute the dynamic call.
386: EXECUTE IMMEDIATE l_exec_string USING IN OUT l_return_status; -- Bug 2776412
387:
388: IF l_return_status <> fnd_api.g_ret_sts_success THEN
389: RAISE hz_dyn_validation.execution_error;
390: END IF;
391:
392:
393: EXCEPTION

Line 401: RAISE hz_dyn_validation.execution_error;

397: fnd_message.set_name('AR', 'HZ_DV_EXEC_ERROR');
398: fnd_message.set_token('PROCEDURE', l_procedure_name);
399: fnd_message.set_token('ERRM', SQLERRM);
400: fnd_msg_pub.add;
401: RAISE hz_dyn_validation.execution_error;
402:
403: END exec_procedure;
404:
405:

Line 447: RAISE hz_dyn_validation.invalid_profile_option;

443: THEN
444: fnd_message.set_name('AR', 'HZ_DV_INVALID_PROFILE_OPTION');
445: fnd_message.set_token('PROFILE', x_validation_profile);
446: fnd_msg_pub.add;
447: RAISE hz_dyn_validation.invalid_profile_option;
448: END IF;
449:
450: -- Create the party record
451: l_party_id := create_party_gt(x_organization.party_rec);

Line 798: RAISE hz_dyn_validation.invalid_profile_option;

794: THEN
795: fnd_message.set_name('AR', 'HZ_DV_INVALID_PROFILE_OPTION');
796: fnd_message.set_token('PROFILE', x_validation_profile);
797: fnd_msg_pub.add;
798: RAISE hz_dyn_validation.invalid_profile_option;
799: END IF;
800:
801: -- Create the party record
802: l_party_id := create_party_gt(x_group.party_rec);

Line 884: RAISE hz_dyn_validation.invalid_profile_option;

880: THEN
881: fnd_message.set_name('AR', 'HZ_DV_INVALID_PROFILE_OPTION');
882: fnd_message.set_token('PROFILE', x_validation_profile);
883: fnd_msg_pub.add;
884: RAISE hz_dyn_validation.invalid_profile_option;
885: END IF;
886:
887: -- Create the relationship (includes the sub-party, if any).
888: l_relationship_id := create_relationship_gt(x_relationship, x_temp_id);

Line 937: RAISE hz_dyn_validation.invalid_profile_option;

933: THEN
934: fnd_message.set_name('AR', 'HZ_DV_INVALID_PROFILE_OPTION');
935: fnd_message.set_token('PROFILE', x_validation_profile);
936: fnd_msg_pub.add;
937: RAISE hz_dyn_validation.invalid_profile_option;
938: END IF;
939:
940: -- Create the relationship record
941: l_relationship_id :=

Line 1087: RAISE hz_dyn_validation.invalid_profile_option;

1083: THEN
1084: fnd_message.set_name('AR', 'HZ_DV_INVALID_PROFILE_OPTION');
1085: fnd_message.set_token('PROFILE', x_validation_profile);
1086: fnd_msg_pub.add;
1087: RAISE hz_dyn_validation.invalid_profile_option;
1088: END IF;
1089:
1090: -- Get the party_site ID.
1091: IF x_temp_id IS NOT NULL THEN

Line 1227: RAISE hz_dyn_validation.invalid_profile_option;

1223: THEN
1224: fnd_message.set_name('AR', 'HZ_DV_INVALID_PROFILE_OPTION');
1225: fnd_message.set_token('PROFILE', x_validation_profile);
1226: fnd_msg_pub.add;
1227: RAISE hz_dyn_validation.invalid_profile_option;
1228: END IF;
1229:
1230: -- Get the location ID.
1231: IF x_temp_id IS NOT NULL THEN

Line 1427: RAISE hz_dyn_validation.invalid_profile_option;

1423: THEN
1424: fnd_message.set_name('AR', 'HZ_DV_INVALID_PROFILE_OPTION');
1425: fnd_message.set_token('PROFILE', x_validation_profile);
1426: fnd_msg_pub.add;
1427: RAISE hz_dyn_validation.invalid_profile_option;
1428: END IF;
1429:
1430: -- Get the contact_point ID.
1431: IF x_temp_id IS NOT NULL THEN

Line 1578: END hz_dyn_validation;

1574: exec_procedure(x_validation_profile, l_contact_point_id);
1575:
1576: END validate_contact_point;
1577:
1578: END hz_dyn_validation;