DBA Data[Home] [Help]

APPS.HZ_PERSON_BO_PUB dependencies on HZ_PARTY_BO_PVT

Line 741: l_raise_event := HZ_PARTY_BO_PVT.is_raising_create_event(

737: RAISE fnd_api.g_exc_error;
738: END IF;
739:
740: -- find out if raise event at the end
741: l_raise_event := HZ_PARTY_BO_PVT.is_raising_create_event(
742: p_obj_complete_flag => l_valid_obj);
743:
744: IF(l_raise_event) THEN
745: -- get event_id and set global variable to event_id for

Line 853: HZ_PARTY_BO_PVT.save_party_preferences(

849: -- Party Preferences
850: ----------------------------
851: IF((p_person_obj.preference_objs IS NOT NULL) AND
852: (p_person_obj.preference_objs.COUNT > 0)) THEN
853: HZ_PARTY_BO_PVT.save_party_preferences(
854: p_party_pref_objs => p_person_obj.preference_objs,
855: p_party_id => x_person_id,
856: x_return_status => x_return_status,
857: x_msg_count => x_msg_count,

Line 890: HZ_PARTY_BO_PVT.create_relationships(

886: -- Relationship api
887: ----------------------------
888: IF((p_person_obj.relationship_objs IS NOT NULL) AND
889: (p_person_obj.relationship_objs.COUNT > 0)) THEN
890: HZ_PARTY_BO_PVT.create_relationships(
891: p_rel_objs => p_person_obj.relationship_objs,
892: p_subject_id => x_person_id,
893: p_subject_type => 'PERSON',
894: x_return_status => x_return_status,

Line 909: HZ_PARTY_BO_PVT.create_classifications(

905: -- Classification api
906: ----------------------------
907: IF((p_person_obj.class_objs IS NOT NULL) AND
908: (p_person_obj.class_objs.COUNT > 0)) THEN
909: HZ_PARTY_BO_PVT.create_classifications(
910: p_code_assign_objs => p_person_obj.class_objs,
911: p_owner_table_name => 'HZ_PARTIES',
912: p_owner_table_id => x_person_id,
913: x_return_status => x_return_status,

Line 988: HZ_PARTY_BO_PVT.create_certifications(

984: -- Certifications
985: ----------------------------
986: IF((p_person_obj.certification_objs IS NOT NULL) AND
987: (p_person_obj.certification_objs.COUNT > 0)) THEN
988: HZ_PARTY_BO_PVT.create_certifications(
989: p_cert_objs => p_person_obj.certification_objs,
990: p_party_id => x_person_id,
991: x_return_status => x_return_status,
992: x_msg_count => x_msg_count,

Line 1006: HZ_PARTY_BO_PVT.create_financial_profiles(

1002: -- Financial Profiles
1003: ----------------------------
1004: IF((p_person_obj.financial_prof_objs IS NOT NULL) AND
1005: (p_person_obj.financial_prof_objs.COUNT > 0)) THEN
1006: HZ_PARTY_BO_PVT.create_financial_profiles(
1007: p_fin_prof_objs => p_person_obj.financial_prof_objs,
1008: p_party_id => x_person_id,
1009: x_return_status => x_return_status,
1010: x_msg_count => x_msg_count,

Line 1024: HZ_PARTY_BO_PVT.create_party_usage_assgmnt(

1020: -- Party Usages -------
1021: ----------------------------------
1022: IF ((p_person_obj.party_usage_objs IS NOT NULL) AND
1023: (p_person_obj.party_usage_objs.COUNT > 0 )) THEN
1024: HZ_PARTY_BO_PVT.create_party_usage_assgmnt(
1025: p_party_usg_objs => p_person_obj.party_usage_objs,
1026: p_party_id => x_person_id,
1027: x_return_status => x_return_status,
1028: x_msg_count => x_msg_count,

Line 1039: HZ_PARTY_BO_PVT.call_bes(

1035:
1036:
1037: -- raise event
1038: IF(l_raise_event) THEN
1039: HZ_PARTY_BO_PVT.call_bes(
1040: p_party_id => x_person_id,
1041: p_bo_code => 'PERSON',
1042: p_create_or_update => 'C',
1043: p_obj_source => p_obj_source,

Line 1222: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

1218: x_person_id => x_person_id,
1219: x_person_os => x_person_os,
1220: x_person_osr => x_person_osr
1221: );
1222: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
1223: x_return_status => x_return_status,
1224: x_msg_count => l_msg_count,
1225: x_msg_data => l_msg_data);
1226: IF FND_API.to_Boolean(p_return_obj_flag) THEN

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

1320: -- find out if raise event at the end
1321:
1322: -- if this procedure is called from person cust bo, set l_raise_event to false
1323: -- otherwise, call is_raising_update_event
1324: IF(HZ_PARTY_BO_PVT.G_CALL_UPDATE_CUST_BO IS NOT NULL) THEN
1325: l_per_raise_event := FALSE;
1326: l_pc_raise_event := FALSE;
1327: ELSE
1328: l_per_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(

Line 1328: l_per_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(

1324: IF(HZ_PARTY_BO_PVT.G_CALL_UPDATE_CUST_BO IS NOT NULL) THEN
1325: l_per_raise_event := FALSE;
1326: l_pc_raise_event := FALSE;
1327: ELSE
1328: l_per_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(
1329: p_party_id => x_person_id,
1330: p_bo_code => 'PERSON'
1331: );
1332:

Line 1333: l_pc_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(

1329: p_party_id => x_person_id,
1330: p_bo_code => 'PERSON'
1331: );
1332:
1333: l_pc_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(
1334: p_party_id => x_person_id,
1335: p_bo_code => 'PERSON_CUST'
1336: );
1337:

Line 1437: HZ_PARTY_BO_PVT.save_party_preferences(

1433: -- Party Preferences
1434: ----------------------------
1435: IF((p_person_obj.preference_objs IS NOT NULL) AND
1436: (p_person_obj.preference_objs.COUNT > 0)) THEN
1437: HZ_PARTY_BO_PVT.save_party_preferences(
1438: p_party_pref_objs => p_person_obj.preference_objs,
1439: p_party_id => x_person_id,
1440: x_return_status => x_return_status,
1441: x_msg_count => x_msg_count,

Line 1474: HZ_PARTY_BO_PVT.save_relationships(

1470: -- Relationship api
1471: ----------------------------
1472: IF((p_person_obj.relationship_objs IS NOT NULL) AND
1473: (p_person_obj.relationship_objs.COUNT > 0)) THEN
1474: HZ_PARTY_BO_PVT.save_relationships(
1475: p_rel_objs => p_person_obj.relationship_objs,
1476: p_subject_id => x_person_id,
1477: p_subject_type => 'PERSON',
1478: x_return_status => x_return_status,

Line 1493: HZ_PARTY_BO_PVT.save_classifications(

1489: -- Classification api
1490: ----------------------------
1491: IF((p_person_obj.class_objs IS NOT NULL) AND
1492: (p_person_obj.class_objs.COUNT > 0)) THEN
1493: HZ_PARTY_BO_PVT.save_classifications(
1494: p_code_assign_objs => p_person_obj.class_objs,
1495: p_owner_table_name => 'HZ_PARTIES',
1496: p_owner_table_id => x_person_id,
1497: x_return_status => x_return_status,

Line 1572: HZ_PARTY_BO_PVT.save_certifications(

1568: -- Certifications
1569: ---------------------
1570: IF((p_person_obj.certification_objs IS NOT NULL) AND
1571: (p_person_obj.certification_objs.COUNT > 0)) THEN
1572: HZ_PARTY_BO_PVT.save_certifications(
1573: p_cert_objs => p_person_obj.certification_objs,
1574: p_party_id => x_person_id,
1575: x_return_status => x_return_status,
1576: x_msg_count => x_msg_count,

Line 1590: HZ_PARTY_BO_PVT.save_financial_profiles(

1586: -- Financial Profiles
1587: ---------------------
1588: IF((p_person_obj.financial_prof_objs IS NOT NULL) AND
1589: (p_person_obj.financial_prof_objs.COUNT > 0)) THEN
1590: HZ_PARTY_BO_PVT.save_financial_profiles(
1591: p_fin_prof_objs => p_person_obj.financial_prof_objs,
1592: p_party_id => x_person_id,
1593: x_return_status => x_return_status,
1594: x_msg_count => x_msg_count,

Line 1608: HZ_PARTY_BO_PVT.save_party_usage_assgmnt(

1604: -- Party Usages -------
1605: ----------------------------------
1606: IF ((p_person_obj.party_usage_objs IS NOT NULL) AND
1607: (p_person_obj.party_usage_objs.COUNT > 0 )) THEN
1608: HZ_PARTY_BO_PVT.save_party_usage_assgmnt(
1609: p_party_usg_objs => p_person_obj.party_usage_objs,
1610: p_party_id => x_person_id,
1611: x_return_status => x_return_status,
1612: x_msg_count => x_msg_count,

Line 1623: HZ_PARTY_BO_PVT.call_bes(

1619:
1620:
1621: -- raise update person event
1622: IF(l_per_raise_event) THEN
1623: HZ_PARTY_BO_PVT.call_bes(
1624: p_party_id => x_person_id,
1625: p_bo_code => 'PERSON',
1626: p_create_or_update => 'U',
1627: p_obj_source => p_obj_source,

Line 1633: HZ_PARTY_BO_PVT.call_bes(

1629: );
1630: END IF;
1631:
1632: IF(l_pc_raise_event) THEN
1633: HZ_PARTY_BO_PVT.call_bes(
1634: p_party_id => x_person_id,
1635: p_bo_code => 'PERSON_CUST',
1636: p_create_or_update => 'U',
1637: p_obj_source => p_obj_source,

Line 1811: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

1807: x_person_id => x_person_id,
1808: x_person_os => x_person_os,
1809: x_person_osr => x_person_osr
1810: );
1811: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
1812: x_return_status => x_return_status,
1813: x_msg_count => l_msg_count,
1814: x_msg_data => l_msg_data);
1815: IF FND_API.to_Boolean(p_return_obj_flag) THEN

Line 2054: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

2050: x_person_id => x_person_id,
2051: x_person_os => x_person_os,
2052: x_person_osr => x_person_osr
2053: );
2054: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
2055: x_return_status => x_return_status,
2056: x_msg_count => l_msg_count,
2057: x_msg_data => l_msg_data);
2058: IF FND_API.to_Boolean(p_return_obj_flag) THEN

Line 3242: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3238: x_return_status => x_return_status,
3239: x_msg_count => l_msg_count,
3240: x_msg_data => l_msg_data
3241: );
3242: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3243: x_return_status => x_return_status,
3244: x_msg_count => l_msg_count,
3245: x_msg_data => l_msg_data);
3246: END get_person_bo;

Line 3448: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3444: x_return_status => x_return_status,
3445: x_msg_count => l_msg_count,
3446: x_msg_data => l_msg_data
3447: );
3448: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3449: x_return_status => x_return_status,
3450: x_msg_count => l_msg_count,
3451: x_msg_data => l_msg_data);
3452: END get_persons_created;

Line 3650: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3646: x_return_status => x_return_status,
3647: x_msg_count => l_msg_count,
3648: x_msg_data => l_msg_data
3649: );
3650: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3651: x_return_status => x_return_status,
3652: x_msg_count => l_msg_count,
3653: x_msg_data => l_msg_data);
3654: END get_persons_updated;

Line 3848: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3844: x_return_status => x_return_status,
3845: x_msg_count => l_msg_count,
3846: x_msg_data => l_msg_data
3847: );
3848: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3849: x_return_status => x_return_status,
3850: x_msg_count => l_msg_count,
3851: x_msg_data => l_msg_data);
3852: END get_person_updated;