DBA Data[Home] [Help]

APPS.HZ_ORGANIZATION_BO_PUB dependencies on HZ_PARTY_BO_PVT

Line 1514: l_raise_event := HZ_PARTY_BO_PVT.is_raising_create_event(

1510: RAISE fnd_api.g_exc_error;
1511: END IF;
1512:
1513: -- find out if raise event at the end
1514: l_raise_event := HZ_PARTY_BO_PVT.is_raising_create_event(
1515: p_obj_complete_flag => l_valid_obj );
1516:
1517: IF(l_raise_event) THEN
1518: -- get event_id and set global variable to event_id for

Line 1601: HZ_PARTY_BO_PVT.save_party_preferences(

1597: -- Party Preferences
1598: ----------------------------
1599: IF((p_organization_obj.preference_objs IS NOT NULL) AND
1600: (p_organization_obj.preference_objs.COUNT > 0)) THEN
1601: HZ_PARTY_BO_PVT.save_party_preferences(
1602: p_party_pref_objs => p_organization_obj.preference_objs,
1603: p_party_id => x_organization_id,
1604: x_return_status => x_return_status,
1605: x_msg_count => x_msg_count,

Line 1638: HZ_PARTY_BO_PVT.create_relationships(

1634: -- Relationship api
1635: ----------------------------
1636: IF((p_organization_obj.relationship_objs IS NOT NULL) AND
1637: (p_organization_obj.relationship_objs.COUNT > 0)) THEN
1638: HZ_PARTY_BO_PVT.create_relationships(
1639: p_rel_objs => p_organization_obj.relationship_objs,
1640: p_subject_id => x_organization_id,
1641: p_subject_type => 'ORGANIZATION',
1642: x_return_status => x_return_status,

Line 1657: HZ_PARTY_BO_PVT.create_classifications(

1653: -- Classification api
1654: ----------------------------
1655: IF((p_organization_obj.class_objs IS NOT NULL) AND
1656: (p_organization_obj.class_objs.COUNT > 0)) THEN
1657: HZ_PARTY_BO_PVT.create_classifications(
1658: p_code_assign_objs => p_organization_obj.class_objs,
1659: p_owner_table_name => 'HZ_PARTIES',
1660: p_owner_table_id => x_organization_id,
1661: x_return_status => x_return_status,

Line 1762: HZ_PARTY_BO_PVT.create_certifications(

1758: -- Certifications
1759: ----------------------------
1760: IF((p_organization_obj.certification_objs IS NOT NULL) AND
1761: (p_organization_obj.certification_objs.COUNT > 0)) THEN
1762: HZ_PARTY_BO_PVT.create_certifications(
1763: p_cert_objs => p_organization_obj.certification_objs,
1764: p_party_id => x_organization_id,
1765: x_return_status => x_return_status,
1766: x_msg_count => x_msg_count,

Line 1780: HZ_PARTY_BO_PVT.create_financial_profiles(

1776: -- Financial Profiles
1777: ----------------------------
1778: IF((p_organization_obj.financial_prof_objs IS NOT NULL) AND
1779: (p_organization_obj.financial_prof_objs.COUNT > 0)) THEN
1780: HZ_PARTY_BO_PVT.create_financial_profiles(
1781: p_fin_prof_objs => p_organization_obj.financial_prof_objs,
1782: p_party_id => x_organization_id,
1783: x_return_status => x_return_status,
1784: x_msg_count => x_msg_count,

Line 1798: HZ_PARTY_BO_PVT.create_party_usage_assgmnt(

1794: -- Party Usages -------
1795: ----------------------------------
1796: IF ((p_organization_obj.party_usage_objs IS NOT NULL) AND
1797: (p_organization_obj.party_usage_objs.COUNT > 0 )) THEN
1798: HZ_PARTY_BO_PVT.create_party_usage_assgmnt(
1799: p_party_usg_objs => p_organization_obj.party_usage_objs,
1800: p_party_id => x_organization_id,
1801: x_return_status => x_return_status,
1802: x_msg_count => x_msg_count,

Line 1849: HZ_PARTY_BO_PVT.call_bes(

1845: END IF;
1846:
1847: -- raise event
1848: IF(l_raise_event) THEN
1849: HZ_PARTY_BO_PVT.call_bes(
1850: p_party_id => x_organization_id,
1851: p_bo_code => 'ORG',
1852: p_create_or_update => 'C',
1853: p_obj_source => p_obj_source,

Line 2032: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

2028: x_organization_id => x_organization_id,
2029: x_organization_os => x_organization_os,
2030: x_organization_osr => x_organization_osr
2031: );
2032: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
2033: x_return_status => x_return_status,
2034: x_msg_count => l_msg_count,
2035: x_msg_data => l_msg_data);
2036: IF FND_API.to_Boolean(p_return_obj_flag) THEN

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

2128: -- find out if raise event at the end
2129:
2130: -- if this procedure is called from org cust bo, set l_raise_event to false
2131: -- otherwise, call is_raising_update_event
2132: IF(HZ_PARTY_BO_PVT.G_CALL_UPDATE_CUST_BO IS NOT NULL) THEN
2133: l_org_raise_event := FALSE;
2134: l_oc_raise_event := FALSE;
2135: ELSE
2136: l_org_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(

Line 2136: l_org_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(

2132: IF(HZ_PARTY_BO_PVT.G_CALL_UPDATE_CUST_BO IS NOT NULL) THEN
2133: l_org_raise_event := FALSE;
2134: l_oc_raise_event := FALSE;
2135: ELSE
2136: l_org_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(
2137: p_party_id => x_organization_id,
2138: p_bo_code => 'ORG'
2139: );
2140:

Line 2141: l_oc_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(

2137: p_party_id => x_organization_id,
2138: p_bo_code => 'ORG'
2139: );
2140:
2141: l_oc_raise_event := HZ_PARTY_BO_PVT.is_raising_update_event(
2142: p_party_id => x_organization_id,
2143: p_bo_code => 'ORG_CUST'
2144: );
2145:

Line 2220: HZ_PARTY_BO_PVT.save_party_preferences(

2216: -- Party Preferences
2217: ----------------------------
2218: IF((p_organization_obj.preference_objs IS NOT NULL) AND
2219: (p_organization_obj.preference_objs.COUNT > 0)) THEN
2220: HZ_PARTY_BO_PVT.save_party_preferences(
2221: p_party_pref_objs => p_organization_obj.preference_objs,
2222: p_party_id => x_organization_id,
2223: x_return_status => x_return_status,
2224: x_msg_count => x_msg_count,

Line 2257: HZ_PARTY_BO_PVT.save_relationships(

2253: -- Relationship api
2254: ----------------------------
2255: IF((p_organization_obj.relationship_objs IS NOT NULL) AND
2256: (p_organization_obj.relationship_objs.COUNT > 0)) THEN
2257: HZ_PARTY_BO_PVT.save_relationships(
2258: p_rel_objs => p_organization_obj.relationship_objs,
2259: p_subject_id => x_organization_id,
2260: p_subject_type => 'ORGANIZATION',
2261: x_return_status => x_return_status,

Line 2276: HZ_PARTY_BO_PVT.save_classifications(

2272: -- Classification api
2273: ----------------------------
2274: IF((p_organization_obj.class_objs IS NOT NULL) AND
2275: (p_organization_obj.class_objs.COUNT > 0)) THEN
2276: HZ_PARTY_BO_PVT.save_classifications(
2277: p_code_assign_objs => p_organization_obj.class_objs,
2278: p_owner_table_name => 'HZ_PARTIES',
2279: p_owner_table_id => x_organization_id,
2280: x_return_status => x_return_status,

Line 2380: HZ_PARTY_BO_PVT.save_certifications(

2376: -- Certifications
2377: ---------------------
2378: IF((p_organization_obj.certification_objs IS NOT NULL) AND
2379: (p_organization_obj.certification_objs.COUNT > 0)) THEN
2380: HZ_PARTY_BO_PVT.save_certifications(
2381: p_cert_objs => p_organization_obj.certification_objs,
2382: p_party_id => x_organization_id,
2383: x_return_status => x_return_status,
2384: x_msg_count => x_msg_count,

Line 2398: HZ_PARTY_BO_PVT.save_financial_profiles(

2394: -- Financial Profiles
2395: ---------------------
2396: IF((p_organization_obj.financial_prof_objs IS NOT NULL) AND
2397: (p_organization_obj.financial_prof_objs.COUNT > 0)) THEN
2398: HZ_PARTY_BO_PVT.save_financial_profiles(
2399: p_fin_prof_objs => p_organization_obj.financial_prof_objs,
2400: p_party_id => x_organization_id,
2401: x_return_status => x_return_status,
2402: x_msg_count => x_msg_count,

Line 2417: HZ_PARTY_BO_PVT.save_party_usage_assgmnt(

2413: -- Party Usages -------
2414: ----------------------------------
2415: IF ((p_organization_obj.party_usage_objs IS NOT NULL) AND
2416: (p_organization_obj.party_usage_objs.COUNT > 0 )) THEN
2417: HZ_PARTY_BO_PVT.save_party_usage_assgmnt(
2418: p_party_usg_objs => p_organization_obj.party_usage_objs,
2419: p_party_id => x_organization_id,
2420: x_return_status => x_return_status,
2421: x_msg_count => x_msg_count,

Line 2468: HZ_PARTY_BO_PVT.call_bes(

2464: END IF;
2465:
2466: -- raise update org event
2467: IF(l_org_raise_event) THEN
2468: HZ_PARTY_BO_PVT.call_bes(
2469: p_party_id => x_organization_id,
2470: p_bo_code => 'ORG',
2471: p_create_or_update => 'U',
2472: p_obj_source => p_obj_source,

Line 2479: HZ_PARTY_BO_PVT.call_bes(

2475: END IF;
2476:
2477: -- raise update org cust event
2478: IF(l_oc_raise_event) THEN
2479: HZ_PARTY_BO_PVT.call_bes(
2480: p_party_id => x_organization_id,
2481: p_bo_code => 'ORG_CUST',
2482: p_create_or_update => 'U',
2483: p_obj_source => p_obj_source,

Line 2657: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

2653: x_organization_id => x_organization_id,
2654: x_organization_os => x_organization_os,
2655: x_organization_osr => x_organization_osr
2656: );
2657: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
2658: x_return_status => x_return_status,
2659: x_msg_count => l_msg_count,
2660: x_msg_data => l_msg_data);
2661: IF FND_API.to_Boolean(p_return_obj_flag) THEN

Line 2900: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

2896: x_organization_id => x_organization_id,
2897: x_organization_os => x_organization_os,
2898: x_organization_osr => x_organization_osr
2899: );
2900: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
2901: x_return_status => x_return_status,
2902: x_msg_count => l_msg_count,
2903: x_msg_data => l_msg_data);
2904: IF FND_API.to_Boolean(p_return_obj_flag) THEN

Line 3150: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3146: x_return_status => x_return_status,
3147: x_msg_count => l_msg_count,
3148: x_msg_data => l_msg_data
3149: );
3150: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3151: x_return_status => x_return_status,
3152: x_msg_count => l_msg_count,
3153: x_msg_data => l_msg_data);
3154: END get_organization_bo;

Line 3354: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3350: x_organization_objs => x_organization_objs,
3351: x_return_status => x_return_status,
3352: x_msg_count => l_msg_count,
3353: x_msg_data => l_msg_data);
3354: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3355: x_return_status => x_return_status,
3356: x_msg_count => l_msg_count,
3357: x_msg_data => l_msg_data);
3358: END get_organizations_created;

Line 3558: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3554: x_organization_objs => x_organization_objs,
3555: x_return_status => x_return_status,
3556: x_msg_count => l_msg_count,
3557: x_msg_data => l_msg_data);
3558: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3559: x_return_status => x_return_status,
3560: x_msg_count => l_msg_count,
3561: x_msg_data => l_msg_data);
3562: END get_organizations_updated;

Line 3750: x_messages := HZ_PARTY_BO_PVT.return_all_messages(

3746: x_organization_obj => x_organization_obj,
3747: x_return_status => x_return_status,
3748: x_msg_count => l_msg_count,
3749: x_msg_data => l_msg_data);
3750: x_messages := HZ_PARTY_BO_PVT.return_all_messages(
3751: x_return_status => x_return_status,
3752: x_msg_count => l_msg_count,
3753: x_msg_data => l_msg_data);
3754: END get_organization_updated;