DBA Data[Home] [Help]

APPS.PER_OSE_SHD SQL Statements

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

Line: 84

    select
       org_structure_element_id
      ,business_group_id
      ,organization_id_parent
      ,org_structure_version_id
      ,organization_id_child
      ,request_id
      ,program_application_id
      ,program_id
      ,program_update_date
      ,object_version_number
      ,position_control_enabled_flag
    from	per_org_structure_elements
    where	org_structure_element_id = p_org_structure_element_id;
Line: 160

    select
       org_structure_element_id
      ,business_group_id
      ,organization_id_parent
      ,org_structure_version_id
      ,organization_id_child
      ,request_id
      ,program_application_id
      ,program_id
      ,program_update_date
      ,object_version_number
      ,position_control_enabled_flag
    from	per_org_structure_elements
    where	org_structure_element_id = p_org_structure_element_id
    for	update nowait;
Line: 231

  ,p_program_update_date            in date
  ,p_object_version_number          in number
  ,p_pos_control_enabled_flag       in varchar2
  )
  Return g_rec_type is
--
  l_rec   g_rec_type;
Line: 251

  l_rec.program_update_date              := p_program_update_date;