DBA Data[Home] [Help]

APPS.HZ_ORGANIZATION_BO_PUB dependencies on HZ_PARTY_BO_PVT

Line 1543: l_raise_event := HZ_PARTY_BO_PVT.is_raising_create_event(

1539: RAISE fnd_api.g_exc_error;
1540: END IF;
1541:
1542: -- find out if raise event at the end
1543: l_raise_event := HZ_PARTY_BO_PVT.is_raising_create_event(
1544: p_obj_complete_flag => l_valid_obj );
1545:
1546: IF(l_raise_event) THEN
1547: -- get event_id and set global variable to event_id for

Line 1630: HZ_PARTY_BO_PVT.save_party_preferences(

1626: -- Party Preferences
1627: ----------------------------
1628: IF((p_organization_obj.preference_objs IS NOT NULL) AND
1629: (p_organization_obj.preference_objs.COUNT > 0)) THEN
1630: HZ_PARTY_BO_PVT.save_party_preferences(
1631: p_party_pref_objs => p_organization_obj.preference_objs,
1632: p_party_id => x_organization_id,
1633: x_return_status => x_return_status,
1634: x_msg_count => x_msg_count,

Line 1667: HZ_PARTY_BO_PVT.create_relationships(

1663: -- Relationship api
1664: ----------------------------
1665: IF((p_organization_obj.relationship_objs IS NOT NULL) AND
1666: (p_organization_obj.relationship_objs.COUNT > 0)) THEN
1667: HZ_PARTY_BO_PVT.create_relationships(
1668: p_rel_objs => p_organization_obj.relationship_objs,
1669: p_subject_id => x_organization_id,
1670: p_subject_type => 'ORGANIZATION',
1671: x_return_status => x_return_status,

Line 1686: HZ_PARTY_BO_PVT.create_classifications(

1682: -- Classification api
1683: ----------------------------
1684: IF((p_organization_obj.class_objs IS NOT NULL) AND
1685: (p_organization_obj.class_objs.COUNT > 0)) THEN
1686: HZ_PARTY_BO_PVT.create_classifications(
1687: p_code_assign_objs => p_organization_obj.class_objs,
1688: p_owner_table_name => 'HZ_PARTIES',
1689: p_owner_table_id => x_organization_id,
1690: x_return_status => x_return_status,

Line 1791: HZ_PARTY_BO_PVT.create_certifications(

1787: -- Certifications
1788: ----------------------------
1789: IF((p_organization_obj.certification_objs IS NOT NULL) AND
1790: (p_organization_obj.certification_objs.COUNT > 0)) THEN
1791: HZ_PARTY_BO_PVT.create_certifications(
1792: p_cert_objs => p_organization_obj.certification_objs,
1793: p_party_id => x_organization_id,
1794: x_return_status => x_return_status,
1795: x_msg_count => x_msg_count,

Line 1809: HZ_PARTY_BO_PVT.create_financial_profiles(

1805: -- Financial Profiles
1806: ----------------------------
1807: IF((p_organization_obj.financial_prof_objs IS NOT NULL) AND
1808: (p_organization_obj.financial_prof_objs.COUNT > 0)) THEN
1809: HZ_PARTY_BO_PVT.create_financial_profiles(
1810: p_fin_prof_objs => p_organization_obj.financial_prof_objs,
1811: p_party_id => x_organization_id,
1812: x_return_status => x_return_status,
1813: x_msg_count => x_msg_count,

Line 1827: HZ_PARTY_BO_PVT.create_party_usage_assgmnt(

1823: -- Party Usages -------
1824: ----------------------------------
1825: IF ((p_organization_obj.party_usage_objs IS NOT NULL) AND
1826: (p_organization_obj.party_usage_objs.COUNT > 0 )) THEN
1827: HZ_PARTY_BO_PVT.create_party_usage_assgmnt(
1828: p_party_usg_objs => p_organization_obj.party_usage_objs,
1829: p_party_id => x_organization_id,
1830: x_return_status => x_return_status,
1831: x_msg_count => x_msg_count,

Line 1878: HZ_PARTY_BO_PVT.call_bes(

1874: END IF;
1875:
1876: -- raise event
1877: IF(l_raise_event) THEN
1878: HZ_PARTY_BO_PVT.call_bes(
1879: p_party_id => x_organization_id,
1880: p_bo_code => 'ORG',
1881: p_create_or_update => 'C',
1882: p_obj_source => p_obj_source,

Line 2575: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

2571: x_organization_id => x_organization_id,
2572: x_organization_os => x_organization_os,
2573: x_organization_osr => x_organization_osr
2574: );
2575: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
2576: x_return_status => x_return_status,
2577: x_msg_count => l_msg_count,
2578: x_msg_data => l_msg_data);
2579: IF FND_API.to_Boolean(p_return_obj_flag) THEN

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

2671: -- find out if raise event at the end
2672:
2673: -- if this procedure is called from org cust bo, set l_raise_event to false
2674: -- otherwise, call is_raising_update_event
2675: IF(HZ_PARTY_BO_PVT.G_CALL_UPDATE_CUST_BO IS NOT NULL) THEN
2676: l_org_raise_event := FALSE;
2677: l_oc_raise_event := FALSE;
2678: ELSE
2679: l_org_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(

Line 2679: l_org_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(

2675: IF(HZ_PARTY_BO_PVT.G_CALL_UPDATE_CUST_BO IS NOT NULL) THEN
2676: l_org_raise_event := FALSE;
2677: l_oc_raise_event := FALSE;
2678: ELSE
2679: l_org_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(
2680: p_party_id => x_organization_id,
2681: p_bo_code => 'ORG'
2682: );
2683:

Line 2684: l_oc_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(

2680: p_party_id => x_organization_id,
2681: p_bo_code => 'ORG'
2682: );
2683:
2684: l_oc_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(
2685: p_party_id => x_organization_id,
2686: p_bo_code => 'ORG_CUST'
2687: );
2688:

Line 2763: HZ_PARTY_BO_PVT.save_party_preferences(

2759: -- Party Preferences
2760: ----------------------------
2761: IF((p_organization_obj.preference_objs IS NOT NULL) AND
2762: (p_organization_obj.preference_objs.COUNT > 0)) THEN
2763: HZ_PARTY_BO_PVT.save_party_preferences(
2764: p_party_pref_objs => p_organization_obj.preference_objs,
2765: p_party_id => x_organization_id,
2766: x_return_status => x_return_status,
2767: x_msg_count => x_msg_count,

Line 2800: HZ_PARTY_BO_PVT.save_relationships(

2796: -- Relationship api
2797: ----------------------------
2798: IF((p_organization_obj.relationship_objs IS NOT NULL) AND
2799: (p_organization_obj.relationship_objs.COUNT > 0)) THEN
2800: HZ_PARTY_BO_PVT.save_relationships(
2801: p_rel_objs => p_organization_obj.relationship_objs,
2802: p_subject_id => x_organization_id,
2803: p_subject_type => 'ORGANIZATION',
2804: x_return_status => x_return_status,

Line 2819: HZ_PARTY_BO_PVT.save_classifications(

2815: -- Classification api
2816: ----------------------------
2817: IF((p_organization_obj.class_objs IS NOT NULL) AND
2818: (p_organization_obj.class_objs.COUNT > 0)) THEN
2819: HZ_PARTY_BO_PVT.save_classifications(
2820: p_code_assign_objs => p_organization_obj.class_objs,
2821: p_owner_table_name => 'HZ_PARTIES',
2822: p_owner_table_id => x_organization_id,
2823: x_return_status => x_return_status,

Line 2923: HZ_PARTY_BO_PVT.save_certifications(

2919: -- Certifications
2920: ---------------------
2921: IF((p_organization_obj.certification_objs IS NOT NULL) AND
2922: (p_organization_obj.certification_objs.COUNT > 0)) THEN
2923: HZ_PARTY_BO_PVT.save_certifications(
2924: p_cert_objs => p_organization_obj.certification_objs,
2925: p_party_id => x_organization_id,
2926: x_return_status => x_return_status,
2927: x_msg_count => x_msg_count,

Line 2941: HZ_PARTY_BO_PVT.save_financial_profiles(

2937: -- Financial Profiles
2938: ---------------------
2939: IF((p_organization_obj.financial_prof_objs IS NOT NULL) AND
2940: (p_organization_obj.financial_prof_objs.COUNT > 0)) THEN
2941: HZ_PARTY_BO_PVT.save_financial_profiles(
2942: p_fin_prof_objs => p_organization_obj.financial_prof_objs,
2943: p_party_id => x_organization_id,
2944: x_return_status => x_return_status,
2945: x_msg_count => x_msg_count,

Line 2960: HZ_PARTY_BO_PVT.save_party_usage_assgmnt(

2956: -- Party Usages -------
2957: ----------------------------------
2958: IF ((p_organization_obj.party_usage_objs IS NOT NULL) AND
2959: (p_organization_obj.party_usage_objs.COUNT > 0 )) THEN
2960: HZ_PARTY_BO_PVT.save_party_usage_assgmnt(
2961: p_party_usg_objs => p_organization_obj.party_usage_objs,
2962: p_party_id => x_organization_id,
2963: x_return_status => x_return_status,
2964: x_msg_count => x_msg_count,

Line 3011: HZ_PARTY_BO_PVT.call_bes(

3007: END IF;
3008:
3009: -- raise update org event
3010: IF(l_org_raise_event) THEN
3011: HZ_PARTY_BO_PVT.call_bes(
3012: p_party_id => x_organization_id,
3013: p_bo_code => 'ORG',
3014: p_create_or_update => 'U',
3015: p_obj_source => p_obj_source,

Line 3022: HZ_PARTY_BO_PVT.call_bes(

3018: END IF;
3019:
3020: -- raise update org cust event
3021: IF(l_oc_raise_event) THEN
3022: HZ_PARTY_BO_PVT.call_bes(
3023: p_party_id => x_organization_id,
3024: p_bo_code => 'ORG_CUST',
3025: p_create_or_update => 'U',
3026: p_obj_source => p_obj_source,

Line 3200: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3196: x_organization_id => x_organization_id,
3197: x_organization_os => x_organization_os,
3198: x_organization_osr => x_organization_osr
3199: );
3200: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3201: x_return_status => x_return_status,
3202: x_msg_count => l_msg_count,
3203: x_msg_data => l_msg_data);
3204: IF FND_API.to_Boolean(p_return_obj_flag) THEN

Line 3443: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3439: x_organization_id => x_organization_id,
3440: x_organization_os => x_organization_os,
3441: x_organization_osr => x_organization_osr
3442: );
3443: 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: IF FND_API.to_Boolean(p_return_obj_flag) THEN

Line 3693: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3689: x_return_status => x_return_status,
3690: x_msg_count => l_msg_count,
3691: x_msg_data => l_msg_data
3692: );
3693: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3694: x_return_status => x_return_status,
3695: x_msg_count => l_msg_count,
3696: x_msg_data => l_msg_data);
3697: END get_organization_bo;

Line 3897: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3893: x_organization_objs => x_organization_objs,
3894: x_return_status => x_return_status,
3895: x_msg_count => l_msg_count,
3896: x_msg_data => l_msg_data);
3897: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3898: x_return_status => x_return_status,
3899: x_msg_count => l_msg_count,
3900: x_msg_data => l_msg_data);
3901: END get_organizations_created;

Line 4101: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

4097: x_organization_objs => x_organization_objs,
4098: x_return_status => x_return_status,
4099: x_msg_count => l_msg_count,
4100: x_msg_data => l_msg_data);
4101: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
4102: x_return_status => x_return_status,
4103: x_msg_count => l_msg_count,
4104: x_msg_data => l_msg_data);
4105: END get_organizations_updated;

Line 4293: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

4289: x_organization_obj => x_organization_obj,
4290: x_return_status => x_return_status,
4291: x_msg_count => l_msg_count,
4292: x_msg_data => l_msg_data);
4293: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
4294: x_return_status => x_return_status,
4295: x_msg_count => l_msg_count,
4296: x_msg_data => l_msg_data);
4297: END get_organization_updated;