DBA Data[Home] [Help]

APPS.HR_SE_UTILITY SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 149

 	  	SELECT effective_date
 	  	INTO 	 l_effective_date
 	  	FROM fnd_sessions
 	  	WHERE session_id=p_session_id;
Line: 312

   SELECT eev1.screen_entry_value  screen_entry_value
   FROM   per_all_assignments_f      asg1
         ,per_all_assignments_f      asg2
         ,per_all_people_f           per
         ,pay_element_links_f        el
         ,pay_element_types_f        et
         ,pay_input_values_f         iv1
         ,pay_element_entries_f      ee
         ,pay_element_entry_values_f eev1
   WHERE  asg1.assignment_id    = p_assignment_id
     AND p_effective_date BETWEEN asg1.effective_start_date AND asg1.effective_end_date
     AND p_effective_date BETWEEN asg2.effective_start_date AND asg2.effective_end_date
     AND p_effective_date BETWEEN ee.effective_start_date AND ee.effective_end_date
     AND p_effective_date BETWEEN eev1.effective_start_date AND eev1.effective_end_date
     AND  per.person_id         = asg1.person_id
     AND  asg2.person_id        = per.person_id
     AND  asg2.primary_flag     = 'Y'
     AND  et.element_name       = 'Court Order Information'
     AND  et.legislation_code   = 'SE'
     AND  iv1.element_type_id   = et.element_type_id
     AND  iv1.name              = p_input_value
     AND  el.business_group_id  = per.business_group_id
     AND  el.element_type_id    = et.element_type_id
     AND  ee.assignment_id      = asg2.assignment_id
     AND  ee.element_link_id    = el.element_link_id
     AND  eev1.element_entry_id = ee.element_entry_id
     AND  eev1.input_value_id   = iv1.input_value_id;
Line: 382

     SELECT hoi2.org_information1,hoi2.org_information2,hoi2.org_information3
     FROM hr_organization_units o1
     , hr_organization_information hoi1
     , hr_organization_information hoi2
     WHERE  o1.business_group_id = p_business_group_id
     AND hoi1.organization_id = o1.organization_id
     AND hoi1.organization_id =  p_tax_unit_id
     AND hoi1.org_information1 = 'HR_LEGAL_EMPLOYER'
     AND hoi1.org_information_context = 'CLASS'
     AND o1.organization_id = hoi2.organization_id
     AND hoi2.ORG_INFORMATION_CONTEXT ='SE_COMPANY_MILEAGE_RATES'
     AND p_effective_date BETWEEN fnd_date.canonical_to_date(hoi2.org_information4) AND
     nvl(fnd_date.canonical_to_date(hoi2.org_information5),to_date('31/12/4712','DD/MM/YYYY'))   ;
Line: 501

        SELECT tag
          FROM fnd_lookup_values
         WHERE lookup_type = 'FND_ISO_CHARACTER_SET_MAP'
           AND lookup_code = SUBSTR(USERENV('LANGUAGE'),
                                    INSTR(USERENV('LANGUAGE'), '.') + 1)
           AND language = 'US';