0% found this document useful (0 votes)
119 views

Count Script For R12.1.3

The document contains code that inserts counts of records from various tables into a new table called ADCO_HRMS_COUNT_SCRIPT_R12_1_3. The counts are grouped by context (e.g. transactions, employees), instance (R12.1.3), and module (e.g. core HR). 25 union queries are used to insert the counts for different contexts from various source tables.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
119 views

Count Script For R12.1.3

The document contains code that inserts counts of records from various tables into a new table called ADCO_HRMS_COUNT_SCRIPT_R12_1_3. The counts are grouped by context (e.g. transactions, employees), instance (R12.1.3), and module (e.g. core HR). 25 union queries are used to insert the counts for different contexts from various source tables.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 60

CREATE TABLE ADCO_HRMS_12_1_3_COUNT_SCRIPT

(
CONTEXT_ID NUMBER,
CONTEXT VARCHAR2 (255),
INSTANCE VARCHAR2 (255),
COUNT NUMBER,
COMMENTS VARCHAR2 (255),
ATTRIB1 VARCHAR2 (255),
ATTRIB1_VALUE VARCHAR2 (255),
ATTRIB2 VARCHAR2 (255),
ATTRIB2_VALUE VARCHAR2 (255),
ATTRIB3 VARCHAR2 (255),
ATTRIB3_VALUE VARCHAR2 (255),
MODULE VARCHAR2 (255)
);

------------------------------------------------------------------------

BEGIN
INSERT INTO ADCO_HRMS_COUNT_SCRIPT_R12_1_3 (context_id,
CONTEXT,
INSTANCE,
COUNT,
comments,
attrib1,
attrib1_value,
attrib2,
attrib2_value,
attrib3,
attrib3_value,
module)
SELECT 1 context_id,
'HR_API_TRANSACTIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'TRANSACTION' module
FROM HR_API_TRANSACTIONS
UNION
SELECT 2 context_id,
'HR_API_TRANSACTION_VALUES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'TRANSACTION' module
FROM HR_API_TRANSACTION_VALUES
UNION
SELECT 3 context_id,
'HR_API_TRANSACTION_STEPS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'TRANSACTION' module
FROM HR_API_TRANSACTION_STEPS
UNION
SELECT 4 context_id,
'PQH_SS_APPROVAL_HISTORY' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'TRANSACTION' module
FROM PQH_SS_APPROVAL_HISTORY
UNION
SELECT 5 context_id,
'PQH_SS_TRANSACTION_HISTORY' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'TRANSACTION' module
FROM PQH_SS_TRANSACTION_HISTORY
UNION
SELECT 6 context_id,
'PQH_SS_VALUE_HISTORY' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'TRANSACTION' module
FROM PQH_SS_VALUE_HISTORY
UNION
SELECT 7 context_id,
'PQH_SS_TRANS_STATE_HISTORY' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'TRANSACTION' module
FROM PQH_SS_TRANS_STATE_HISTORY
UNION
SELECT 8 context_id,
'PQH_SS_HISTORY_VALUES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'TRANSACTION' module
FROM PQH_SS_VALUE_HISTORY
UNION
SELECT 9 context_id,
'Business Groups' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_BUSINESS_GROUPS
UNION
SELECT 10 context_id,
'Organization' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM hr_all_organization_units
UNION
SELECT 11 context_id,
'Position Definition' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM per_position_definitions
UNION
SELECT 12 context_id,
'Positions' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM hr_all_positions_f
UNION
SELECT 13 context_id,
'Job Definitions' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM per_job_definitions
UNION
SELECT 14 context_id,
'Jobs' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM per_jobs
UNION
SELECT 15 context_id,
'Grades' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM per_grades
UNION
SELECT 16 context_id,
'Grade Definition' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM per_grade_definitions
UNION
SELECT 17 context_id,
'Locations' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM HR_LOCATIONS_ALL
UNION
SELECT 18 context_id,
'Organization Hierarchy' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_ORGANIZATION_STRUCTURES
UNION
SELECT 19 context_id,
'Position Hierarchy' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_POSITION_STRUCTURES
UNION
SELECT 20 context_id,
'Active Empoyees' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_ALL_PEOPLE_F
WHERE TRUNC (SYSDATE) BETWEEN EFFECTIVE_START_DATE
AND EFFECTIVE_END_DATE
AND CURRENT_EMPLOYEE_FLAG = 'Y'
UNION
SELECT 21 context_id,
'Contingent Workers' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_ALL_PEOPLE_F
WHERE TRUNC (SYSDATE) BETWEEN EFFECTIVE_START_DATE
AND EFFECTIVE_END_DATE
AND CURRENT_NPW_FLAG = 'Y'
UNION
SELECT 22 context_id,
'Applicants' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM per_all_people_f
WHERE CURRENT_APPLICANT_FLAG = 'Y'
AND TRUNC (SYSDATE) BETWEEN EFFECTIVE_START_DATE
AND EFFECTIVE_END_dATE
UNION
SELECT 23 context_id,
'Applicants' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (DISTINCT CONTACT_PERSON_ID) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM per_contact_relationships
UNION
SELECT 24 context_id,
'Medical Assessment' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM per_medical_assessments
UNION
SELECT 25 context_id,
'Person Phone' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_PHONES
WHERE parent_table = 'PER_ALL_PEOPLE_F'
UNION
SELECT 26 context_id,
'Applications' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM PER_APPLICATIONS
UNION
SELECT 27 context_id,
'Qualifications' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_QUALIFICATIONS
UNION
SELECT 28 context_id,
'SIT' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_PERSON_ANALYSES
UNION
SELECT 29 context_id,
'EIT' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_PEOPLE_EXTRA_INFO
UNION
SELECT 30 context_id,
'Address' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_ADDRESSES
UNION
SELECT 31 context_id,
'CONTACT_RELATIONSHIPS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_CONTACT_RELATIONSHIPS
UNION
SELECT 32 context_id,
'Assignment Count' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_ALL_ASSIGNMENTS_F
WHERE TRUNC (SYSDATE) BETWEEN EFFECTIVE_START_DATE
AND EFFECTIVE_END_DATE
UNION
SELECT 33 context_id,
'Person Images' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_IMAGES
WHERE table_name = 'PER_PEOPLE_F'
UNION
SELECT 34 context_id,
'Schhols And Colleges' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_ESTABLISHMENTS
UNION
SELECT 35 context_id,
'Person Schhols And Colleges' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_ESTABLISHMENT_ATTENDANCES
UNION
SELECT 36 context_id,
'Previous Employer' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM per_previous_employers
UNION
SELECT 37 context_id,
'Employee Period Of Service' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_PERIODS_OF_SERVICE
UNION
SELECT 38 context_id,
'Contingent Worker Period of Placement' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_PERIODS_OF_PLACEMENT
UNION
SELECT 39 context_id,
'Person Types' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_PERSON_TYPES
UNION
SELECT 40 context_id,
'People Group' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM pay_people_groups
UNION
SELECT 41 context_id,
'Assignment Statuses' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_ASSIGNMENT_STATUS_TYPES
UNION
SELECT 42 context_id,
'Absence Type' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_ABSENCE_ATTENDANCE_TYPES
UNION
SELECT 43 context_id,
'Absence' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_ABSENCE_ATTENDANCES
UNION
SELECT 44 context_id,
'Work Prefrence' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_DEPLOYMENT_FACTORS
UNION
SELECT 45 context_id,
'Work Incident' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM per_work_incidents
UNION
SELECT 46 context_id,
'Grade Rate' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PAY_RATES
UNION
SELECT 47 context_id,
'Pay Scale' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_PARENT_SPINES
UNION
SELECT 48 context_id,
'Salary Basis' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_PAY_BASES
UNION
SELECT 49 context_id,
'Security Profiles' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_SECURITY_PROFILES
UNION
SELECT 50 context_id,
'Document Type' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM HR_DOCUMENT_TYPES
UNION
SELECT 51 context_id,
'HR_ORGANIZATION_INFORMATION' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM HR_ORGANIZATION_INFORMATION
UNION
SELECT 52 context_id,
'Assignment Budget Values' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_ASSIGNMENT_BUDGET_VALUES_F
UNION
SELECT 53 context_id,
'Accrual Plans' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PAY_ACCRUAL_PLANS
UNION
SELECT 54 context_id,
'Accrual Bands' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PAY_ACCRUAL_BANDS
UNION
SELECT 55 context_id,
'Bookings' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_BOOKINGs
UNION
SELECT 56 context_id,
'Events' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_EVENTS
WHERE EVENT_OR_INTERVIEW <> 'I'
UNION
SELECT 57 context_id,
'Person Delivery Methods' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM PER_PERSON_DLVRY_METHODS
UNION
SELECT 58 context_id,
'Contracts' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'CORE_HR_SSHR' module
FROM per_contracts_f
UNION
SELECT 59 context_id,
'Payrolls' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM pay_payrolls_f
UNION
SELECT 60 context_id,
'PAY_EVENT_GROUPS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_EVENT_GROUPS
UNION
SELECT 61 context_id,
'Consolidation Set' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_CONSOLIDATION_SETS
UNION
SELECT 62 context_id,
'PAY_PAYROLL_ACTIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM pay_payroll_actions
UNION
SELECT 63 context_id,
'PAY_ASSIGNMENT_ACTION' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM pay_assignment_actions
UNION
SELECT 64 context_id,
'Payroll Costing' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM pay_costs
UNION
SELECT 65 context_id,
'Payroll Costing Of Payment' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_PAYMENT_COSTS
UNION
SELECT 66 context_id,
'GL Interface' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM GL_INTERFACE
UNION
SELECT 67 context_id,
'Pre-Payment' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_PRE_PAYMENTS
UNION
SELECT 68 context_id,
'Elements' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM Pay_element_types_f
UNION
SELECT 69 context_id,
'Reconciled Payments' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_CE_RECONCILED_PAYMENTS
UNION
SELECT 70 context_id,
'Element Links' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM pay_element_links_f
UNION
SELECT 71 context_id,
'Balance' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_BALANCE_TYPES
UNION
SELECT 72 context_id,
'Fast-Formulas' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM FF_FORMULAS_F
UNION
SELECT 73 context_id,
'Formula Results' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_STATUS_PROCESSING_RULES_F
UNION
SELECT 74 context_id,
'Organization Payment Method' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_ORG_PAYMENT_METHODS_F
UNION
SELECT 75 context_id,
'Employee with Direct Deposit Payment Method' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_PERSONAL_PAYMENT_METHODS_F
WHERE TRUNC (SYSDATE) BETWEEN EFFECTIVE_START_DATE
AND EFFECTIVE_END_DATE
AND ORG_PAYMENT_METHOD_ID IN
(SELECT ORG_PAYMENT_METHOD_ID
FROM PAY_ORG_PAYMENT_METHODS_F
WHERE PAYMENT_TYPE_ID IN
(SELECT PAYMENT_TYPE_ID
FROM pay_payment_Types
WHERE PAYMENT_TYPE_NAME LIKE
'%Direct Deposit%'))
UNION
SELECT 76 context_id,
'Employees with Cash Payment Method' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_PERSONAL_PAYMENT_METHODS_F
WHERE TRUNC (SYSDATE) BETWEEN EFFECTIVE_START_DATE
AND EFFECTIVE_END_DATE
AND ORG_PAYMENT_METHOD_ID IN
( (SELECT PAYMENT_TYPE_ID
FROM pay_payment_Types
WHERE UPPER (PAYMENT_TYPE_NAME) LIKE '%CASH%'))
UNION
SELECT 77 context_id,
'Employees with Cheque Payment Method' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_PERSONAL_PAYMENT_METHODS_F
WHERE TRUNC (SYSDATE) BETWEEN EFFECTIVE_START_DATE
AND EFFECTIVE_END_DATE
AND ORG_PAYMENT_METHOD_ID IN
(SELECT ORG_PAYMENT_METHOD_ID
FROM PAY_ORG_PAYMENT_METHODS_F
WHERE PAYMENT_TYPE_ID IN
(SELECT PAYMENT_TYPE_ID
FROM pay_payment_Types
WHERE UPPER (PAYMENT_TYPE_NAME) LIKE
'%CHEQUE%'))
UNION
SELECT 78 context_id,
'Cost Allocation Key-Flex' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_COST_ALLOCATION_KEYFLEX
UNION
SELECT 79 context_id,
'Salary Proposal' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM per_pay_proposals
UNION
SELECT 80 context_id,
'PAY_RUN_BALANCES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context Contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_RUN_BALANCES
UNION
SELECT 81 context_id,
'PAY_DEFINED_BALANCES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context Contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM pay_defined_balances
UNION
SELECT 82 context_id,
'PAY_DATED_TABLES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context Contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_DATED_TABLES
UNION
SELECT 83 context_id,
'PAY_EVENT_UPDATES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context Contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_EVENT_UPDATES
UNION
SELECT 84 context_id,
'PAY_DATETRACKED_EVENTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context Contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_DATETRACKED_EVENTS
UNION
SELECT 85 context_id,
'PAY_PROCESS_EVENTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context Contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_PROCESS_EVENTS
UNION
SELECT 86 context_id,
'Element Set' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAYROLL' module
FROM PAY_ELEMENT_SETS
UNION
SELECT 87 context_id,
'Rating Levels' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_RATING_LEVELS
UNION
SELECT 88 context_id,
'Rating Scale' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_RATING_SCALES
UNION
SELECT 89 context_id,
'Performance Management Plan' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_PERF_MGMT_PLANS
UNION
SELECT 90 context_id,
'QUESTIONNAIRES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM HR_QUESTIONNAIRES
UNION
SELECT 91 context_id,
'Appraisal Period' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_APPRAISAL_PERIODS
UNION
SELECT 92 context_id,
'Appraisal Template' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_APPRAISAL_TEMPLATES
UNION
SELECT 93 context_id,
'Assessment Type' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_ASSESSMENT_TYPES
UNION
SELECT 94 context_id,
'Assessments' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_ASSESSMENTS
UNION
SELECT 95 context_id,
'Participants' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_PARTICIPANTS
UNION
SELECT 96 context_id,
'Objective Library' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_OBJECTIVES_LIBRARY
UNION
SELECT 97 context_id,
'Competency' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_COMPETENCES
UNION
SELECT 98 context_id,
'Competency Definition' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_COMPETENCE_DEFINITIONS
UNION
SELECT 99 context_id,
'Individual Competency and It''''s Rating' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_COMPETENCE_ELEMENTS
UNION
SELECT 100 context_id,
'Competencies Defined Outcome' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_COMPETENCE_OUTCOMES
UNION
SELECT 101 context_id,
'Competencies Outcome' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_COMP_ELEMENT_OUTCOMES
UNION
SELECT 102 context_id,
'Objective Rating' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_PERFORMANCE_RATINGS
UNION
SELECT 103 context_id,
'Employee''''s Appraisal Score-Card' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_PERSONAL_SCORECARDS
UNION
SELECT 104 context_id,
'Employee''''s Objective' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_OBJECTIVES
UNION
SELECT 105 context_id,
'Appraisal Count' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PMS' module
FROM PER_APPRAISALS
UNION
SELECT 106 context_id,
'Vacancy Count' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM per_all_vacancies
UNION
SELECT 107 context_id,
'Offer Count' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM irc_offers
UNION
SELECT 108 context_id,
'Search Criteria' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM irc_search_criteria
UNION
SELECT 109 context_id,
'Recruitment Activity' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM PER_RECRUITMENT_ACTIVITIES
UNION
SELECT 110 context_id,
'Defualt Posting' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_DEFAULT_POSTINGS
UNION
SELECT 111 context_id,
'Posting Content' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_POSTING_CONTENTS
UNION
SELECT 112 context_id,
'Recruiting Sites' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_ALL_RECRUITING_SITES
UNION
SELECT 113 context_id,
'Requisitions' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM per_requisitions
UNION
SELECT 114 context_id,
'iRecruitment Agency' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM PO_VENDORS
WHERE VENDOR_TYPE_LOOKUP_CODE = 'IRC_JOB_AGENCY'
UNION
SELECT 115 context_id,
'Interviews' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM per_events
WHERE EVENT_OR_INTERVIEW = 'I'
UNION
SELECT 116 context_id,
'Referral Info' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_REFERRAL_INFO
UNION
SELECT 117 context_id,
'Recruiting Sites' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_ALL_RECRUITING_SITES
UNION
SELECT 118 context_id,
'Agency Vacancy' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_AGENCY_VACANCIES
UNION
SELECT 119 context_id,
'iRecruitment Assignment Details' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_ASSIGNMENT_DETAILS_F
UNION
SELECT 120 context_id,
'iRecruitment Assignment Statuses' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_ASSIGNMENT_STATUSES
UNION
SELECT 121 context_id,
'iRecruitment Communication' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_COMMUNICATIONS
UNION
SELECT 122 context_id,
'iRecruitment Communication Messages' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_COMM_MESSAGES
UNION
SELECT 123 context_id,
'iRecruitment Documents' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_DOCUMENTS
UNION
SELECT 124 context_id,
'Interview Details' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_INTERVIEW_DETAILS
UNION
SELECT 125 context_id,
'iRecruitment Communication Properties' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_COMM_PROPERTIES
UNION
SELECT 126 context_id,
'iRecruitment Communication Recipients' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_COMM_RECIPIENTS
UNION
SELECT 127 context_id,
'iRecruitment Communication Topics' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_COMM_TOPICS
UNION
SELECT 128 context_id,
'iRecruitment Offer Status History' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_OFFER_STATUS_HISTORY
UNION
SELECT 129 context_id,
'iRecruitment Recruitment Team Member' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
NULL comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'IRC' module
FROM IRC_REC_TEAM_MEMBERS
UNION
SELECT 130 context_id,
'OTA_ACTIVITY_DEFINITIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_ACTIVITY_DEFINITIONS
UNION
SELECT 131 context_id,
'OTA_ACTIVITY_VERSIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_ACTIVITY_VERSIONS
UNION
SELECT 132 context_id,
'OTA_ACT_CAT_INCLUSIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_ACT_CAT_INCLUSIONS
UNION
SELECT 133 context_id,
'OTA_ANNOUNCEMENTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_ANNOUNCEMENTS
UNION
SELECT 134 context_id,
'OTA_ATTEMPTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_ATTEMPTS
UNION
SELECT 135 context_id,
'OTA_BKNG_JUSTIFICATIONS_B' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_BKNG_JUSTIFICATIONS_B
UNION
SELECT 136 context_id,
'OTA_BOOKING_STATUS_HISTORIES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_BOOKING_STATUS_HISTORIES
UNION
SELECT 137 context_id,
'OTA_BOOKING_STATUS_TYPES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_BOOKING_STATUS_TYPES
UNION
SELECT 138 context_id,
'OTA_BULK_ENR_REQUESTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_BULK_ENR_REQUESTS
UNION
SELECT 139 context_id,
'OTA_BULK_ENR_REQ_MEMBERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_BULK_ENR_REQ_MEMBERS
UNION
SELECT 140 context_id,
'OTA_CATEGORY_USAGES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CATEGORY_USAGES
UNION
SELECT 141 context_id,
'OTA_CERTIFICATIONS_B' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CERTIFICATIONS_B
UNION
SELECT 142 context_id,
'OTA_CERTIFICATION_MEMBERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CERTIFICATION_MEMBERS
UNION
SELECT 143 context_id,
'OTA_CERT_CAT_INCLUSIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CERT_CAT_INCLUSIONS
UNION
SELECT 144 context_id,
'OTA_CERT_ENROLLMENTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CERT_ENROLLMENTS
UNION
SELECT 145 context_id,
'OTA_CERT_MBR_ENROLLMENTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CERT_MBR_ENROLLMENTS
UNION
SELECT 146 context_id,
'OTA_CERT_PRD_ENROLLMENTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CERT_PRD_ENROLLMENTS
UNION
SELECT 147 context_id,
'OTA_CHATS_B' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CHATS_B
UNION
SELECT 148 context_id,
'OTA_CHAT_MESSAGES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CHAT_MESSAGES
UNION
SELECT 149 context_id,
'OTA_CHAT_OBJ_INCLUSIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CHAT_OBJ_INCLUSIONS
UNION
SELECT 150 context_id,
'OTA_CHAT_USERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CHAT_USERS
UNION
SELECT 151 context_id,
'OTA_CMI_ADAPTERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CMI_ADAPTERS
UNION
SELECT 152 context_id,
'OTA_COMPETENCE_LANGUAGES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_COMPETENCE_LANGUAGES
UNION
SELECT 153 context_id,
'OTA_CONFERENCES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CONFERENCES
UNION
SELECT 154 context_id,
'OTA_CONTENT_SERVERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CONTENT_SERVERS
UNION
SELECT 155 context_id,
'OTA_COURSE_PREREQUISITES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_COURSE_PREREQUISITES
UNION
SELECT 156 context_id,
'OTA_CROSS_CHARGES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_CROSS_CHARGES
UNION
SELECT 157 context_id,
'OTA_DELEGATE_BOOKINGS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_DELEGATE_BOOKINGS
UNION
SELECT 158 context_id,
'OTA_EVALUATIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_EVALUATIONS
UNION
SELECT 159 context_id,
'OTA_EVENTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_EVENTS
UNION
SELECT 160 context_id,
'OTA_EVENT_ASSOCIATIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_EVENT_ASSOCIATIONS
UNION
SELECT 161 context_id,
'OTA_FINANCE_HEADERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_FINANCE_HEADERS
UNION
SELECT 162 context_id,
'OTA_FINANCE_LINES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_FINANCE_LINES
UNION
SELECT 163 context_id,
'OTA_FORUMS_B' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_FORUMS_B
UNION
SELECT 164 context_id,
'OTA_FORUM_MESSAGES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_FORUM_MESSAGES
UNION
SELECT 165 context_id,
'OTA_FORUM_THREADS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_FORUM_THREADS
UNION
SELECT 166 context_id,
'OTA_FRM_NOTIF_SUBSCRIBERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_FRM_NOTIF_SUBSCRIBERS
UNION
SELECT 167 context_id,
'OTA_FRM_OBJ_INCLUSIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_FRM_OBJ_INCLUSIONS
UNION
SELECT 168 context_id,
'OTA_HR_GL_FLEX_MAPS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_HR_GL_FLEX_MAPS
UNION
SELECT 169 context_id,
'OTA_ILN_XML_PROCESSES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_ILN_XML_PROCESSES
UNION
SELECT 170 context_id,
'OTA_IMPORT_HISTORIES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_IMPORT_HISTORIES
UNION
SELECT 171 context_id,
'OTA_LEARNING_OBJECTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_LEARNING_OBJECTS
UNION
SELECT 172 context_id,
'OTA_LEARNING_PATHS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_LEARNING_PATHS
UNION
SELECT 173 context_id,
'OTA_LEARNING_PATH_MEMBERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_LEARNING_PATH_MEMBERS
UNION
SELECT 174 context_id,
'OTA_LO_FOLDERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_LO_FOLDERS
UNION
SELECT 175 context_id,
'OTA_LO_SCORM_OBJECTIVES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_LO_SCORM_OBJECTIVES
UNION
SELECT 176 context_id,
'OTA_LP_CAT_INCLUSIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_LP_CAT_INCLUSIONS
UNION
SELECT 177 context_id,
'OTA_LP_MEMBER_ENROLLMENTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_LP_MEMBER_ENROLLMENTS
UNION
SELECT 178 context_id,
'OTA_LP_SECTIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_LP_SECTIONS
UNION
SELECT 179 context_id,
'OTA_MANDATORY_ENR_REQUESTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_MANDATORY_ENR_REQUESTS
UNION
SELECT 180 context_id,
'OTA_MANDATORY_ENR_REQ_MEMBERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_MANDATORY_ENR_REQ_MEMBERS
UNION
SELECT 181 context_id,
'OTA_NOTRNG_HISTORIES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_NOTRNG_HISTORIES
UNION
SELECT 182 context_id,
'OTA_OFFERINGS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_OFFERINGS
UNION
SELECT 183 context_id,
'OTA_OPEN_FC_ENROLLMENTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_OPEN_FC_ENROLLMENTS
UNION
SELECT 184 context_id,
'OTA_PERFORMANCES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_PERFORMANCES
UNION
SELECT 185 context_id,
'OTA_PREREQUISITES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_PREREQUISITES
UNION
SELECT 186 context_id,
'OTA_PRICE_LISTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_PRICE_LISTS
UNION
SELECT 187 context_id,
'OTA_PRICE_LIST_ENTRIES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_PRICE_LIST_ENTRIES
UNION
SELECT 188 context_id,
'OTA_PROGRAM_MEMBERSHIPS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_PROGRAM_MEMBERSHIPS
UNION
SELECT 189 context_id,
'OTA_PVT_FRM_THREAD_USERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_PVT_FRM_THREAD_USERS
UNION
SELECT 190 context_id,
'OTA_QBANK_QUESTIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_QBANK_QUESTIONS
UNION
SELECT 191 context_id,
'OTA_QUESTIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_QUESTIONS
UNION
SELECT 192 context_id,
'OTA_QUESTION_BANKS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_QUESTION_BANKS
UNION
SELECT 193 context_id,
'OTA_RESOURCE_ALLOCATIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_RESOURCE_ALLOCATIONS
UNION
SELECT 194 context_id,
'OTA_RESOURCE_BOOKINGS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_RESOURCE_BOOKINGS
UNION
SELECT 195 context_id,
'OTA_RESOURCE_DEFINITIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_RESOURCE_DEFINITIONS
UNION
SELECT 196 context_id,
'OTA_RESOURCE_USAGES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_RESOURCE_USAGES
UNION
SELECT 197 context_id,
'OTA_RESPONSE_TYPES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_RESPONSE_TYPES
UNION
SELECT 198 context_id,
'OTA_RESPONSE_VALUES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_RESPONSE_VALUES
UNION
SELECT 199 context_id,
'OTA_SCORM_OBJECTIVES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_SCORM_OBJECTIVES
UNION
SELECT 200 context_id,
'OTA_SCORM_OBJ_ATTEMPTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_SCORM_OBJ_ATTEMPTS
UNION
SELECT 201 context_id,
'OTA_SCORM_OBJ_PERFS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_SCORM_OBJ_PERFS
UNION
SELECT 202 context_id,
'OTA_SECTION_RULES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_SECTION_RULES
UNION
SELECT 203 context_id,
'OTA_SKILL_PROVISIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_SKILL_PROVISIONS
UNION
SELECT 204 context_id,
'OTA_SUPPLIABLE_RESOURCES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_SUPPLIABLE_RESOURCES
UNION
SELECT 205 context_id,
'OTA_TESTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_TESTS
UNION
SELECT 206 context_id,
'OTA_TEST_QUESTIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_TEST_QUESTIONS
UNION
SELECT 207 context_id,
'OTA_TEST_SECTIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_TEST_SECTIONS
UNION
SELECT 208 context_id,
'OTA_TITLE_CONVERSIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_TITLE_CONVERSIONS
UNION
SELECT 209 context_id,
'OTA_TP_MEASUREMENT_TYPES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_TP_MEASUREMENT_TYPES
UNION
SELECT 210 context_id,
'OTA_TRAINING_PLANS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_TRAINING_PLANS
UNION
SELECT 211 context_id,
'OTA_TRAINING_PLAN_COSTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_TRAINING_PLAN_COSTS
UNION
SELECT 212 context_id,
'OTA_TRAINING_PLAN_MEMBERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_TRAINING_PLAN_MEMBERS
UNION
SELECT 213 context_id,
'OTA_USER_GROUPS_B' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_USER_GROUPS_B
UNION
SELECT 214 context_id,
'OTA_USER_GROUP_ELEMENTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_USER_GROUP_ELEMENTS
UNION
SELECT 215 context_id,
'OTA_UTEST_QUESTIONS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_UTEST_QUESTIONS
UNION
SELECT 216 context_id,
'OTA_UTEST_RESPONSES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_UTEST_RESPONSES
UNION
SELECT 217 context_id,
'OTA_VENDOR_SUPPLIES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OLM' module
FROM OTA_VENDOR_SUPPLIES
UNION
SELECT 218 context_id,
'hxc_time_building_blocks' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM hxc_time_building_blocks
UNION
SELECT 219 context_id,
'hxc_time_attribute_usages' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM hxc_time_attribute_usages
UNION
SELECT 220 context_id,
'hxc_time_attributes' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM hxc_time_attributes
UNION
SELECT 221 context_id,
'HXT_ADD_ELEM_INFO_F' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM HXT_ADD_ELEM_INFO_F
UNION
SELECT 222 context_id,
'HXT_ADD_ASSIGN_INFO_F' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM HXT_ADD_ASSIGN_INFO_F
UNION
SELECT 223 context_id,
'HXT_EARN_GROUP_TYPES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM HXT_EARN_GROUP_TYPES
UNION
SELECT 224 context_id,
'HXT_EARN_GROUPS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM HXT_EARN_GROUPS
UNION
SELECT 225 context_id,
'HXT_EARNING_POLICIES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM HXT_EARNING_POLICIES
UNION
SELECT 226 context_id,
'HXT_EARNING_RULES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM HXT_EARNING_RULES
UNION
SELECT 227 context_id,
'HXT_HOLIDAY_CALENDARS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM HXT_HOLIDAY_CALENDARS
UNION
SELECT 228 context_id,
'HXT_HOLIDAY_DAYS_TL' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM HXT_HOLIDAY_DAYS_TL
UNION
SELECT 229 context_id,
'HXT_ROTATION_PLANS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM HXT_ROTATION_PLANS
UNION
SELECT 230 context_id,
'HXT_SHIFT_DIFF_POLICIES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM HXT_SHIFT_DIFF_POLICIES
UNION
SELECT 231 context_id,
'HXT_SHIFTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM HXT_SHIFTS
UNION
SELECT 232 context_id,
'HXT_TIMECARDS_F' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'Context field contains Table Name' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'OTL' module
FROM HXT_TIMECARDS_F
UNION
SELECT 233 context_id,
'ALR_ALERTS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'ALL ALERTS' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'ALERT' module
FROM ALR_ALERTS
UNION
SELECT 234 context_id,
'WF_ITEM_TYPES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'WORK FLOW ITEMS' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'WF' module
FROM WF_ITEM_TYPES
UNION
SELECT 235 context_id,
'FND_FORM_CUSTOM_RULES' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'FND_FORM_CUSTOM_RULES' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'FND' module
FROM FND_FORM_CUSTOM_RULES
UNION
SELECT 236 context_id,
'DBA_JOBS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'DB JOB COUNT' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'DB' module
FROM DBA_JOBS
UNION
SELECT 237 context_id,
'MATERIALIZED VIEW' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'MATERIALIZED VIEW COUNT' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'DB' module
FROM ALL_OBJECTS
WHERE object_type LIKE 'MATERIALIZED VIEW'
AND (object_name LIKE 'XX%' OR object_name LIKE 'ADCO%')
UNION
SELECT 238 context_id,
'VIEW' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'VIEW COUNT' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'DB' module
FROM ALL_OBJECTS
WHERE object_type LIKE 'VIEW'
AND (object_name LIKE 'XX%' OR object_name LIKE 'ADCO%')
UNION
SELECT 239 context_id,
'PACKAGE' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'PACKAGE COUNT' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'DB' module
FROM ALL_OBJECTS
WHERE object_type LIKE 'PACKAGE'
AND (object_name LIKE 'XX%' OR object_name LIKE 'ADCO%')
UNION
SELECT 240 context_id,
'PACKAGE BODY' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'PACKAGE BODY COUNT' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'DB' module
FROM ALL_OBJECTS
WHERE object_type LIKE 'PACKAGE BODY'
AND (object_name LIKE 'XX%' OR object_name LIKE 'ADCO%')
UNION
SELECT 241 context_id,
'TRIGGER' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'TRIGGER COUNT' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'DB' module
FROM ALL_OBJECTS
WHERE object_type LIKE 'TRIGGER'
AND (object_name LIKE 'XX%' OR object_name LIKE 'ADCO%')
UNION
SELECT 242 context_id,
'PROCEDURE' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'PROCEDURE COUNT' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'DB' module
FROM ALL_OBJECTS
WHERE object_type LIKE 'PROCEDURE'
AND (object_name LIKE 'XX%' OR object_name LIKE 'ADCO%')
UNION
SELECT 243 context_id,
'FUNCTION' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'FUNCTION COUNT' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'DB' module
FROM ALL_OBJECTS
WHERE object_type LIKE 'FUNCTION'
AND (object_name LIKE 'XX%' OR object_name LIKE 'ADCO%')
UNION
SELECT 244 context_id,
'SYNONYM' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'SYNONYM COUNT' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'DB' module
FROM ALL_OBJECTS
WHERE object_type LIKE 'SYNONYM'
AND (object_name LIKE 'XX%' OR object_name LIKE 'ADCO%')
UNION
SELECT 245 context_id,
'PAY_ACTION_PARAMETERS' CONTEXT,
'R12.1.3' INSTANCE,
COUNT (*) COUNT,
'ACTION PARAMETER COUNT' comments,
NULL attrib1,
NULL attrib1_value,
NULL attrib2,
NULL attrib2_value,
NULL attrib3,
NULL attrib3_value,
'PAY' module
FROM PAY_ACTION_PARAMETERS;

COMMIT;
END;

You might also like