DBA Data[Home] [Help]

APPS.PYSGBUPL SQL Statements

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

Line: 119

       select balance_type_id,
              balance_uom
       into   l_balance_type_id, l_bal_uom
       from   pay_balance_types
       where  upper(balance_name) = l_baltyp_name
       and    ((business_group_id = p_busgrp_id)
             or(   business_group_id is null
                   and legislation_code = p_leg_code)
             or(   business_group_id is null
                   and legislation_code is null)
              )
       for update of balance_type_id;
Line: 188

       select balance_dimension_id
       into   l_balance_dim_id
       from   pay_balance_dimensions
       where  upper(dimension_name) = l_baldim_name
       and    ((business_group_id = p_busgrp_id)
             or(   business_group_id is null
               and legislation_code = p_leg_code)
             or(   business_group_id is null
               and legislation_code is null)
              );
Line: 234

         select balance_name,
                dimension_name
         from   pay_balance_batch_lines
         where  batch_id = c_batch_id;
Line: 242

         select hou.business_group_id,
                hou.legislation_code
           into l_bg_id,
                l_leg_code
         from   per_business_groups       hou,
                pay_balance_batch_headers bbh
         where  bbh.batch_id = p_batch_id
         and    upper(hou.name) = upper(bbh.business_group_name);
Line: 298

         select balance_feed_id
         from   pay_balance_feeds_f BF,
                pay_input_values_f IV,
                pay_element_types_f ET,
                pay_element_classifications EC
         where  EC.classification_name = 'Balance Initialization'
         and    ET.classification_id   = EC.classification_id
         and    IV.element_type_id     = ET.element_type_id
         and    IV.input_value_id      = BF.input_value_id
         and    BF.balance_type_id     = p_balance_type_id
         and    nvl(BF.business_group_id, p_business_group) = p_business_group;
Line: 317

      select pbg.business_group_id, bbh.business_group_name, pbg.currency_code
      into   l_bg_id, l_bg_name, l_bg_currency_code
      from   pay_balance_batch_headers bbh,
             per_business_groups       pbg
      where  batch_id = p_batch_id
      and    upper(pbg.name) = upper(bbh.business_group_name);
Line: 365

                                          '_' ||                      -- elements to delete
                                          to_char(i);                 -- by the Undo
Line: 385

                        update pay_element_types_f ELEM
                        set ELEM.element_information1 = 'B'
                        where element_type_id = l_element_type_id;
Line: 402

                        create an input value for each balance_name selected and
                        name it after the balance it is created for.
                     */
--
                     l_input_val_id := pay_db_pay_setup.create_input_value (
                           p_element_name         => l_element_name,
                           p_name                 => substr(l_bal_name, 1, 28)||j,
                           p_uom_code             => g_baltyp_tbl_uom(l_bal_count),
                           p_business_group_name  => l_bg_name,
	                     p_effective_start_date => to_date('01-01-0001','DD-MM-YYYY'),
                           p_effective_end_date   => to_date('31-12-4712','DD-MM-YYYY'),
                           p_display_sequence     => j+1);
Line: 435

                           p_insert_type           => 'INSERT_INPUT_VALUE',
                           p_element_link_id       => l_elem_link_id,
                           p_input_value_id        => l_input_val_id,
                           p_input_value_name      => substr(l_bal_name, 1 , 28)||j,
                           p_costable_type         => NULL,
                           p_validation_start_date => to_date('01-01-0001','DD-MM-YYYY'),
                           p_validation_end_date   => to_date('31-12-4712','DD-MM-YYYY'),
                           p_default_value         => NULL,
                           p_max_value             => NULL,
                           p_min_value             => NULL,
                           p_warning_or_error_flag => NULL,
                           p_hot_default_flag      => NULL,
                           p_legislation_code      => NULL,
                           p_pay_value_name        => NULL,
                           p_element_type_id       => l_element_type_id);