DBA Data[Home] [Help]

APPS.HZ_PERSON_BO_PUB dependencies on HZ_PARTY_BO_PVT

Line 770: l_raise_event := HZ_PARTY_BO_PVT.is_raising_create_event(

766: RAISE fnd_api.g_exc_error;
767: END IF;
768:
769: -- find out if raise event at the end
770: l_raise_event := HZ_PARTY_BO_PVT.is_raising_create_event(
771: p_obj_complete_flag => l_valid_obj);
772:
773: IF(l_raise_event) THEN
774: -- get event_id and set global variable to event_id for

Line 882: HZ_PARTY_BO_PVT.save_party_preferences(

878: -- Party Preferences
879: ----------------------------
880: IF((p_person_obj.preference_objs IS NOT NULL) AND
881: (p_person_obj.preference_objs.COUNT > 0)) THEN
882: HZ_PARTY_BO_PVT.save_party_preferences(
883: p_party_pref_objs => p_person_obj.preference_objs,
884: p_party_id => x_person_id,
885: x_return_status => x_return_status,
886: x_msg_count => x_msg_count,

Line 919: HZ_PARTY_BO_PVT.create_relationships(

915: -- Relationship api
916: ----------------------------
917: IF((p_person_obj.relationship_objs IS NOT NULL) AND
918: (p_person_obj.relationship_objs.COUNT > 0)) THEN
919: HZ_PARTY_BO_PVT.create_relationships(
920: p_rel_objs => p_person_obj.relationship_objs,
921: p_subject_id => x_person_id,
922: p_subject_type => 'PERSON',
923: x_return_status => x_return_status,

Line 938: HZ_PARTY_BO_PVT.create_classifications(

934: -- Classification api
935: ----------------------------
936: IF((p_person_obj.class_objs IS NOT NULL) AND
937: (p_person_obj.class_objs.COUNT > 0)) THEN
938: HZ_PARTY_BO_PVT.create_classifications(
939: p_code_assign_objs => p_person_obj.class_objs,
940: p_owner_table_name => 'HZ_PARTIES',
941: p_owner_table_id => x_person_id,
942: x_return_status => x_return_status,

Line 1017: HZ_PARTY_BO_PVT.create_certifications(

1013: -- Certifications
1014: ----------------------------
1015: IF((p_person_obj.certification_objs IS NOT NULL) AND
1016: (p_person_obj.certification_objs.COUNT > 0)) THEN
1017: HZ_PARTY_BO_PVT.create_certifications(
1018: p_cert_objs => p_person_obj.certification_objs,
1019: p_party_id => x_person_id,
1020: x_return_status => x_return_status,
1021: x_msg_count => x_msg_count,

Line 1035: HZ_PARTY_BO_PVT.create_financial_profiles(

1031: -- Financial Profiles
1032: ----------------------------
1033: IF((p_person_obj.financial_prof_objs IS NOT NULL) AND
1034: (p_person_obj.financial_prof_objs.COUNT > 0)) THEN
1035: HZ_PARTY_BO_PVT.create_financial_profiles(
1036: p_fin_prof_objs => p_person_obj.financial_prof_objs,
1037: p_party_id => x_person_id,
1038: x_return_status => x_return_status,
1039: x_msg_count => x_msg_count,

Line 1053: HZ_PARTY_BO_PVT.create_party_usage_assgmnt(

1049: -- Party Usages -------
1050: ----------------------------------
1051: IF ((p_person_obj.party_usage_objs IS NOT NULL) AND
1052: (p_person_obj.party_usage_objs.COUNT > 0 )) THEN
1053: HZ_PARTY_BO_PVT.create_party_usage_assgmnt(
1054: p_party_usg_objs => p_person_obj.party_usage_objs,
1055: p_party_id => x_person_id,
1056: x_return_status => x_return_status,
1057: x_msg_count => x_msg_count,

Line 1068: HZ_PARTY_BO_PVT.call_bes(

1064:
1065:
1066: -- raise event
1067: IF(l_raise_event) THEN
1068: HZ_PARTY_BO_PVT.call_bes(
1069: p_party_id => x_person_id,
1070: p_bo_code => 'PERSON',
1071: p_create_or_update => 'C',
1072: p_obj_source => p_obj_source,

Line 1651: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

1647: x_person_id => x_person_id,
1648: x_person_os => x_person_os,
1649: x_person_osr => x_person_osr
1650: );
1651: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
1652: x_return_status => x_return_status,
1653: x_msg_count => l_msg_count,
1654: x_msg_data => l_msg_data);
1655: IF FND_API.to_Boolean(p_return_obj_flag) THEN

Line 1753: IF(HZ_PARTY_BO_PVT.G_CALL_UPDATE_CUST_BO IS NOT NULL) THEN

1749: -- find out if raise event at the end
1750:
1751: -- if this procedure is called from person cust bo, set l_raise_event to false
1752: -- otherwise, call is_raising_update_event
1753: IF(HZ_PARTY_BO_PVT.G_CALL_UPDATE_CUST_BO IS NOT NULL) THEN
1754: l_per_raise_event := FALSE;
1755: l_pc_raise_event := FALSE;
1756: ELSE
1757: l_per_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(

Line 1757: l_per_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(

1753: IF(HZ_PARTY_BO_PVT.G_CALL_UPDATE_CUST_BO IS NOT NULL) THEN
1754: l_per_raise_event := FALSE;
1755: l_pc_raise_event := FALSE;
1756: ELSE
1757: l_per_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(
1758: p_party_id => x_person_id,
1759: p_bo_code => 'PERSON'
1760: );
1761:

Line 1762: l_pc_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(

1758: p_party_id => x_person_id,
1759: p_bo_code => 'PERSON'
1760: );
1761:
1762: l_pc_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(
1763: p_party_id => x_person_id,
1764: p_bo_code => 'PERSON_CUST'
1765: );
1766:

Line 1866: HZ_PARTY_BO_PVT.save_party_preferences(

1862: -- Party Preferences
1863: ----------------------------
1864: IF((p_person_obj.preference_objs IS NOT NULL) AND
1865: (p_person_obj.preference_objs.COUNT > 0)) THEN
1866: HZ_PARTY_BO_PVT.save_party_preferences(
1867: p_party_pref_objs => p_person_obj.preference_objs,
1868: p_party_id => x_person_id,
1869: x_return_status => x_return_status,
1870: x_msg_count => x_msg_count,

Line 1903: HZ_PARTY_BO_PVT.save_relationships(

1899: -- Relationship api
1900: ----------------------------
1901: IF((p_person_obj.relationship_objs IS NOT NULL) AND
1902: (p_person_obj.relationship_objs.COUNT > 0)) THEN
1903: HZ_PARTY_BO_PVT.save_relationships(
1904: p_rel_objs => p_person_obj.relationship_objs,
1905: p_subject_id => x_person_id,
1906: p_subject_type => 'PERSON',
1907: x_return_status => x_return_status,

Line 1922: HZ_PARTY_BO_PVT.save_classifications(

1918: -- Classification api
1919: ----------------------------
1920: IF((p_person_obj.class_objs IS NOT NULL) AND
1921: (p_person_obj.class_objs.COUNT > 0)) THEN
1922: HZ_PARTY_BO_PVT.save_classifications(
1923: p_code_assign_objs => p_person_obj.class_objs,
1924: p_owner_table_name => 'HZ_PARTIES',
1925: p_owner_table_id => x_person_id,
1926: x_return_status => x_return_status,

Line 2001: HZ_PARTY_BO_PVT.save_certifications(

1997: -- Certifications
1998: ---------------------
1999: IF((p_person_obj.certification_objs IS NOT NULL) AND
2000: (p_person_obj.certification_objs.COUNT > 0)) THEN
2001: HZ_PARTY_BO_PVT.save_certifications(
2002: p_cert_objs => p_person_obj.certification_objs,
2003: p_party_id => x_person_id,
2004: x_return_status => x_return_status,
2005: x_msg_count => x_msg_count,

Line 2019: HZ_PARTY_BO_PVT.save_financial_profiles(

2015: -- Financial Profiles
2016: ---------------------
2017: IF((p_person_obj.financial_prof_objs IS NOT NULL) AND
2018: (p_person_obj.financial_prof_objs.COUNT > 0)) THEN
2019: HZ_PARTY_BO_PVT.save_financial_profiles(
2020: p_fin_prof_objs => p_person_obj.financial_prof_objs,
2021: p_party_id => x_person_id,
2022: x_return_status => x_return_status,
2023: x_msg_count => x_msg_count,

Line 2037: HZ_PARTY_BO_PVT.save_party_usage_assgmnt(

2033: -- Party Usages -------
2034: ----------------------------------
2035: IF ((p_person_obj.party_usage_objs IS NOT NULL) AND
2036: (p_person_obj.party_usage_objs.COUNT > 0 )) THEN
2037: HZ_PARTY_BO_PVT.save_party_usage_assgmnt(
2038: p_party_usg_objs => p_person_obj.party_usage_objs,
2039: p_party_id => x_person_id,
2040: x_return_status => x_return_status,
2041: x_msg_count => x_msg_count,

Line 2052: HZ_PARTY_BO_PVT.call_bes(

2048:
2049:
2050: -- raise update person event
2051: IF(l_per_raise_event) THEN
2052: HZ_PARTY_BO_PVT.call_bes(
2053: p_party_id => x_person_id,
2054: p_bo_code => 'PERSON',
2055: p_create_or_update => 'U',
2056: p_obj_source => p_obj_source,

Line 2062: HZ_PARTY_BO_PVT.call_bes(

2058: );
2059: END IF;
2060:
2061: IF(l_pc_raise_event) THEN
2062: HZ_PARTY_BO_PVT.call_bes(
2063: p_party_id => x_person_id,
2064: p_bo_code => 'PERSON_CUST',
2065: p_create_or_update => 'U',
2066: p_obj_source => p_obj_source,

Line 2240: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

2236: x_person_id => x_person_id,
2237: x_person_os => x_person_os,
2238: x_person_osr => x_person_osr
2239: );
2240: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
2241: x_return_status => x_return_status,
2242: x_msg_count => l_msg_count,
2243: x_msg_data => l_msg_data);
2244: IF FND_API.to_Boolean(p_return_obj_flag) THEN

Line 2483: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

2479: x_person_id => x_person_id,
2480: x_person_os => x_person_os,
2481: x_person_osr => x_person_osr
2482: );
2483: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
2484: x_return_status => x_return_status,
2485: x_msg_count => l_msg_count,
2486: x_msg_data => l_msg_data);
2487: IF FND_API.to_Boolean(p_return_obj_flag) THEN

Line 3671: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3667: x_return_status => x_return_status,
3668: x_msg_count => l_msg_count,
3669: x_msg_data => l_msg_data
3670: );
3671: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3672: x_return_status => x_return_status,
3673: x_msg_count => l_msg_count,
3674: x_msg_data => l_msg_data);
3675: END get_person_bo;

Line 3877: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3873: x_return_status => x_return_status,
3874: x_msg_count => l_msg_count,
3875: x_msg_data => l_msg_data
3876: );
3877: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3878: x_return_status => x_return_status,
3879: x_msg_count => l_msg_count,
3880: x_msg_data => l_msg_data);
3881: END get_persons_created;

Line 4079: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

4075: x_return_status => x_return_status,
4076: x_msg_count => l_msg_count,
4077: x_msg_data => l_msg_data
4078: );
4079: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
4080: x_return_status => x_return_status,
4081: x_msg_count => l_msg_count,
4082: x_msg_data => l_msg_data);
4083: END get_persons_updated;

Line 4277: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

4273: x_return_status => x_return_status,
4274: x_msg_count => l_msg_count,
4275: x_msg_data => l_msg_data
4276: );
4277: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
4278: x_return_status => x_return_status,
4279: x_msg_count => l_msg_count,
4280: x_msg_data => l_msg_data);
4281: END get_person_updated;