DBA Data[Home] [Help]

APPS.PER_EVT_BUS dependencies on PER_EVT_BUS

Line 1: Package Body per_evt_bus as

1: Package Body per_evt_bus as
2: /* $Header: peevtrhi.pkb 120.2 2008/04/30 11:32:10 uuddavol ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package varchar2(33) := ' per_evt_bus.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_evt_bus.'; -- Global package name
9: --
10: -- The following two global variables are only to be
11: -- used by the return_legislation_code function.
12: --

Line 110: if ( nvl(per_evt_bus.g_event_id, hr_api.g_number)

106: ,p_argument => 'event_id'
107: ,p_argument_value => p_event_id
108: );
109: --
110: if ( nvl(per_evt_bus.g_event_id, hr_api.g_number)
111: = p_event_id) then
112: --
113: -- The legislation code has already been found with a previous
114: -- call to this function. Just return the value in the global

Line 117: l_legislation_code := per_evt_bus.g_legislation_code;

113: -- The legislation code has already been found with a previous
114: -- call to this function. Just return the value in the global
115: -- variable.
116: --
117: l_legislation_code := per_evt_bus.g_legislation_code;
118: hr_utility.set_location(l_proc, 20);
119: else
120: --
121: -- The ID is different to the last call to this function

Line 141: per_evt_bus.g_event_id := p_event_id;

137: -- Set the global variables so the values are
138: -- available for the next call to this function.
139: --
140: close csr_leg_code;
141: per_evt_bus.g_event_id := p_event_id;
142: per_evt_bus.g_legislation_code := l_legislation_code;
143: end if;
144: hr_utility.set_location(' Leaving:'|| l_proc, 40);
145: return l_legislation_code;

Line 142: per_evt_bus.g_legislation_code := l_legislation_code;

138: -- available for the next call to this function.
139: --
140: close csr_leg_code;
141: per_evt_bus.g_event_id := p_event_id;
142: per_evt_bus.g_legislation_code := l_legislation_code;
143: end if;
144: hr_utility.set_location(' Leaving:'|| l_proc, 40);
145: return l_legislation_code;
146: end return_legislation_code;

Line 1085: per_evt_bus.chk_event_type

1081:
1082: --
1083: -- Validate CHK_EVENT_TYPE
1084: --
1085: per_evt_bus.chk_event_type
1086: (p_type => p_rec.type
1087: );
1088:
1089: --

Line 1092: per_evt_bus.chk_event_times

1088:
1089: --
1090: -- Validate CHK_EVENT_TIMES
1091: --
1092: per_evt_bus.chk_event_times
1093: (p_date_start => p_rec.date_start
1094: ,p_date_end => p_rec.date_end
1095: ,p_time_start => p_rec.time_start
1096: ,p_time_end => p_rec.time_end

Line 1102: per_evt_bus.chk_emp_or_apl

1098:
1099: --
1100: -- Validate CHK_EMP_OR_APL
1101: --
1102: per_evt_bus.chk_emp_or_apl
1103: (p_emp_or_apl => p_rec.emp_or_apl
1104: ,p_date_start => p_rec.date_start
1105: );
1106:

Line 1110: per_evt_bus.chk_event_or_interview

1106:
1107: --
1108: -- Validate CHK_EVENT_OR_INTERVIEW
1109: --
1110: per_evt_bus.chk_event_or_interview
1111: (p_event_or_interview => p_rec.event_or_interview
1112: ,p_date_start => p_rec.date_start
1113: );
1114:

Line 1118: per_evt_bus.chk_internal_contact_person_id

1114:
1115: --
1116: -- Validate CHK_INTERNAL_CONTACT_PERSON_ID
1117: --
1118: per_evt_bus.chk_internal_contact_person_id
1119: (p_object_version_number => p_rec.object_version_number
1120: ,p_internal_contact_person_id => p_rec.internal_contact_person_id
1121: ,p_business_group_id => p_rec.business_group_id
1122: ,p_date_start => p_rec.date_start

Line 1128: per_evt_bus.chk_party_id

1124:
1125: --
1126: -- Validate CHK_PARTY_ID
1127: --
1128: per_evt_bus.chk_party_id
1129: (p_rec
1130: );
1131: --
1132: -- Validate CHK_ORGANIZATION_RUN_BY_ID

Line 1134: per_evt_bus.chk_organization_run_by_id

1130: );
1131: --
1132: -- Validate CHK_ORGANIZATION_RUN_BY_ID
1133: --
1134: per_evt_bus.chk_organization_run_by_id
1135: (p_object_version_number => p_rec.object_version_number
1136: ,p_organization_run_by_id => p_rec.organization_run_by_id
1137: ,p_business_group_id => p_rec.business_group_id
1138: ,p_date_start => p_rec.date_start

Line 1144: per_evt_bus.chk_assignment_id

1140:
1141: --
1142: -- Validate CHK_ASSIGNMENT_ID
1143: --
1144: per_evt_bus.chk_assignment_id
1145: (p_assignment_id => p_rec.assignment_id
1146: ,p_date_start => p_rec.date_start
1147: ,p_business_group_id => p_rec.business_group_id
1148: );

Line 1153: per_evt_bus.chk_location_id

1149:
1150: --
1151: -- Validate CHK_LOCATION
1152: --
1153: per_evt_bus.chk_location_id
1154: (p_object_version_number => p_rec.object_version_number
1155: ,p_location_id => p_rec.location_id
1156: ,p_business_group_id => p_rec.business_group_id
1157: );

Line 1160: per_evt_bus.chk_df(p_rec);

1156: ,p_business_group_id => p_rec.business_group_id
1157: );
1158:
1159: --
1160: per_evt_bus.chk_df(p_rec);
1161: --
1162: hr_utility.set_location(' Leaving:'||l_proc, 20);
1163: End insert_validate;
1164: --

Line 1192: per_evt_bus.chk_event_times

1188: );
1189: --
1190: -- Validate CHK_EVENT_TIMES
1191: --
1192: per_evt_bus.chk_event_times
1193: (p_date_start => p_rec.date_start
1194: ,p_date_end => p_rec.date_end
1195: ,p_time_start => p_rec.time_start
1196: ,p_time_end => p_rec.time_end

Line 1202: per_evt_bus.chk_emp_or_apl

1198:
1199: --
1200: -- Validate CHK_EMP_OR_APL
1201: --
1202: per_evt_bus.chk_emp_or_apl
1203: (p_emp_or_apl => p_rec.emp_or_apl
1204: ,p_date_start => p_rec.date_start
1205: );
1206:

Line 1210: per_evt_bus.chk_event_or_interview

1206:
1207: --
1208: -- Validate CHK_EVENT_OR_INTERVIEW
1209: --
1210: per_evt_bus.chk_event_or_interview
1211: (p_event_or_interview => p_rec.event_or_interview
1212: ,p_date_start => p_rec.date_start
1213: );
1214:

Line 1218: per_evt_bus.chk_internal_contact_person_id

1214:
1215: --
1216: -- Validate CHK_INTERNAL_CONTACT_PERSON_ID
1217: --
1218: per_evt_bus.chk_internal_contact_person_id
1219: (p_object_version_number => p_rec.object_version_number
1220: ,p_internal_contact_person_id => p_rec.internal_contact_person_id
1221: ,p_date_start => p_rec.date_start
1222: ,p_business_group_id => p_rec.business_group_id

Line 1228: per_evt_bus.chk_organization_run_by_id

1224:
1225: --
1226: -- Validate CHK_ORGANIZATION_RUN_BY_ID
1227: --
1228: per_evt_bus.chk_organization_run_by_id
1229: (p_object_version_number => p_rec.object_version_number
1230: ,p_organization_run_by_id => p_rec.organization_run_by_id
1231: ,p_business_group_id => p_rec.business_group_id
1232: ,p_date_start => p_rec.date_start

Line 1238: per_evt_bus.chk_assignment_id

1234:
1235: --
1236: -- Validate CHK_ASSIGNMENT_ID
1237: --
1238: per_evt_bus.chk_assignment_id
1239: (p_assignment_id => p_rec.assignment_id
1240: ,p_date_start => p_rec.date_start
1241: ,p_business_group_id => p_rec.business_group_id
1242: );

Line 1247: per_evt_bus.chk_location_id

1243:
1244: --
1245: -- Validate CHK_LOCATION
1246: --
1247: per_evt_bus.chk_location_id
1248: (p_object_version_number => p_rec.object_version_number
1249: ,p_location_id => p_rec.location_id
1250: ,p_business_group_id => p_rec.business_group_id
1251: );

Line 1254: per_evt_bus.chk_df(p_rec);

1250: ,p_business_group_id => p_rec.business_group_id
1251: );
1252:
1253: --
1254: per_evt_bus.chk_df(p_rec);
1255: --
1256: hr_utility.set_location(' Leaving:'||l_proc, 20);
1257: End update_validate;
1258: --

Line 1276: end per_evt_bus;

1272: --
1273: hr_utility.set_location(' Leaving:'||l_proc, 20);
1274: End delete_validate;
1275: --
1276: end per_evt_bus;