DBA Data[Home] [Help]

APPS.HR_GL_SYNC_ORGS dependencies on HR_ORGANIZATION_API

Line 957: hr_organization_api.enable_org_classification

953: -- If classification is disabled, temporarily enable it.
954: IF p_enabled_flag = 'N' THEN
955: hr_utility.set_location(l_proc, 20);
956:
957: hr_organization_api.enable_org_classification
958: ( p_effective_date => SYSDATE
959: , p_org_information_id => p_class_id
960: , p_org_info_type_code => l_org_info_type
961: , p_object_version_number => l_class_ovn

Line 968: hr_organization_api.create_org_information

964:
965: hr_utility.set_location(l_proc, 30);
966:
967: -- Create the organization information type
968: hr_organization_api.create_org_information
969: ( p_effective_date => SYSDATE
970: , p_organization_id => p_org_id
971: , p_org_info_type_code => 'Company Cost Center'
972: , p_org_information2 => p_co_vs_id

Line 989: hr_organization_api.disable_org_classification

985: -- If classification was disabled, re-disable it.
986: IF p_enabled_flag = 'N' THEN
987: hr_utility.set_location(l_proc, 50);
988:
989: hr_organization_api.disable_org_classification
990: ( p_effective_date => SYSDATE
991: , p_org_information_id => p_class_id
992: , p_org_info_type_code => l_org_info_type
993: , p_object_version_number => l_class_ovn

Line 1036: hr_organization_api.create_org_classification

1032: -- Create HR Organization classification if allowed by profile.
1033: IF g_class_profile = 'CCHR' THEN
1034: hr_utility.set_location(l_proc, 20);
1035:
1036: hr_organization_api.create_org_classification
1037: ( p_effective_date => SYSDATE
1038: , p_organization_id => p_org_id
1039: , p_org_classif_code => 'HR_ORG'
1040: , p_org_information_id => l_class_id

Line 1094: hr_organization_api.create_company_cost_center

1090: -- Create Company Cost Center classification if allowed by profile.
1091: IF g_class_profile LIKE 'CC%' THEN
1092: hr_utility.set_location(l_proc, 20);
1093:
1094: hr_organization_api.create_company_cost_center
1095: ( p_effective_date => SYSDATE
1096: , p_organization_id => p_org_id
1097: , p_company_valueset_id => p_co_vs_id
1098: , p_company => p_co

Line 1155: hr_organization_api.create_organization

1151: BEGIN
1152:
1153: hr_utility.set_location('Entering: '|| l_proc, 10);
1154:
1155: hr_organization_api.create_organization
1156: ( p_effective_date => SYSDATE
1157: , p_business_group_id => p_bg_id
1158: , p_date_from => p_org_start_date
1159: , p_date_to => p_org_end_date