DBA Data[Home] [Help]

APPS.BEN_PERSON_ACTIONS_API SQL Statements

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

Line: 152

procedure update_person_actions
  (p_validate                       in  boolean   default false
  ,p_person_action_id               in  number
  ,p_person_id                      in  number    default hr_api.g_number
  ,p_ler_id                         in  number    default hr_api.g_number
  ,p_benefit_action_id              in  number    default hr_api.g_number
  ,p_action_status_cd               in  varchar2  default hr_api.g_varchar2
  ,p_chunk_number                   in  number    default hr_api.g_number
  ,p_object_version_number          in out nocopy number
  ,p_effective_date                 in  date
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'update_person_actions';
Line: 175

  savepoint update_person_actions;
Line: 187

    ben_person_actions_bk2.update_person_actions_b
      (
       p_person_action_id               =>  p_person_action_id
      ,p_person_id                      =>  p_person_id
      ,p_ler_id                         =>  p_ler_id
      ,p_benefit_action_id              =>  p_benefit_action_id
      ,p_action_status_cd               =>  p_action_status_cd
      ,p_chunk_number                   =>  p_chunk_number
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                 => trunc(p_effective_date)
      );
Line: 201

        (p_module_name => 'UPDATE_person_actions'
        ,p_hook_type   => 'BP'
        );
Line: 225

    ben_person_actions_bk2.update_person_actions_a
      (
       p_person_action_id               =>  p_person_action_id
      ,p_person_id                      =>  p_person_id
      ,p_ler_id                         =>  p_ler_id
      ,p_benefit_action_id              =>  p_benefit_action_id
      ,p_action_status_cd               =>  p_action_status_cd
      ,p_chunk_number                   =>  p_chunk_number
      ,p_object_version_number          =>  l_object_version_number
      ,p_effective_date                => trunc(p_effective_date)
      );
Line: 239

        (p_module_name => 'UPDATE_person_actions'
        ,p_hook_type   => 'AP'
        );
Line: 268

    ROLLBACK TO update_person_actions;
Line: 282

    ROLLBACK TO update_person_actions;
Line: 285

end update_person_actions;
Line: 290

procedure delete_person_actions
  (p_validate                       in  boolean  default false
  ,p_person_action_id               in  number
  ,p_object_version_number          in out nocopy number
  ,p_effective_date                 in  date
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'update_person_actions';
Line: 308

  savepoint delete_person_actions;
Line: 321

    ben_person_actions_bk3.delete_person_actions_b
      (
       p_person_action_id               =>  p_person_action_id
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 330

        (p_module_name => 'DELETE_person_actions'
        ,p_hook_type   => 'BP'
        );
Line: 349

    ben_person_actions_bk3.delete_person_actions_a
      (
       p_person_action_id               =>  p_person_action_id
      ,p_object_version_number          =>  l_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 358

        (p_module_name => 'DELETE_person_actions'
        ,p_hook_type   => 'AP'
        );
Line: 383

    ROLLBACK TO delete_person_actions;
Line: 396

    ROLLBACK TO delete_person_actions;
Line: 399

end delete_person_actions;