DBA Data[Home] [Help]

APPS.OTA_CHAT_OBJ_INCLUSION_API SQL Statements

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

Line: 145

procedure update_chat_obj_inclusion (
   p_validate                     in  boolean          default false
  ,p_effective_date               in  date
  ,p_object_id                    in  number
  ,p_object_type                  in  varchar2
  ,p_primary_flag                 in  varchar2         default hr_api.g_varchar2
  ,p_start_date_active            in  date             default hr_api.g_date
  ,p_end_date_active              in  date             default hr_api.g_date
  ,p_chat_id                      in  number
  ,p_object_version_number        in out nocopy number
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc                    varchar2(72) := g_package||' update_chat_obj_inclusion';
Line: 168

  savepoint UPDATE_CHAT_OBJ_INCLUSION;
Line: 176

  ota_chat_obj_inclusion_bk2.update_chat_obj_inclusion_b
  (  p_effective_date              => l_effective_date
  ,p_chat_id                       => p_chat_id
  ,p_object_id                     => p_object_id
  ,p_object_type                   => p_object_type
  ,p_start_date_active             => p_start_date_active
  ,p_end_date_active               => p_end_date_active
  ,p_primary_flag                  => p_primary_flag
  ,p_object_version_number         => l_object_version_number
    );
Line: 189

        (p_module_name => 'UPDATE_CHAT_OBJ_INCLUSION'
        ,p_hook_type   => 'BP'
        );
Line: 218

  ota_chat_obj_inclusion_bk2.update_chat_obj_inclusion_a
  (  p_effective_date              => l_effective_date
  ,p_chat_id                       => p_chat_id
  ,p_object_id                     => p_object_id
  ,p_object_type                   => p_object_type
  ,p_start_date_active             => p_start_date_active
  ,p_end_date_active               => p_end_date_active
  ,p_primary_flag                  => p_primary_flag
  ,p_object_version_number         => l_object_version_number
    );
Line: 231

        (p_module_name => 'UPDATE_CHAT_OBJ_INCLUSION'
        ,p_hook_type   => 'AP'
        );
Line: 253

    rollback to UPDATE_CHAT_OBJ_INCLUSION;
Line: 265

    rollback to UPDATE_CHAT_OBJ_INCLUSION;
Line: 269

end update_chat_obj_inclusion;
Line: 275

procedure delete_chat_obj_inclusion
  (p_validate                      in     boolean  default false
  ,p_chat_id               in     number
  ,p_object_id                    in     number
  ,p_object_type                  in     varchar2
  ,p_object_version_number         in     number
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc                    varchar2(72) := g_package||' delete_chat_obj_inclusion';
Line: 294

  savepoint DELETE_CHAT_OBJ_INCLUSION;
Line: 302

  ota_chat_obj_inclusion_bk3.delete_chat_obj_inclusion_b
  (p_chat_id        => p_chat_id
  ,p_object_id      => p_object_id
  ,p_object_type    => p_object_type
  ,p_object_version_number   => p_object_version_number
    );
Line: 311

        (p_module_name => 'DELETE_CHAT_OBJ_INCLUSION'
        ,p_hook_type   => 'BP'
        );
Line: 334

  ota_chat_obj_inclusion_bk3.delete_chat_obj_inclusion_a
  (p_chat_id        => p_chat_id
  ,p_object_id      => p_object_id
  ,p_object_type    => p_object_type
  ,p_object_version_number   => p_object_version_number
    );
Line: 343

        (p_module_name => 'DELETE_CHAT_OBJ_INCLUSION'
        ,p_hook_type   => 'AP'
        );
Line: 364

    rollback to DELETE_CHAT_OBJ_INCLUSION;
Line: 375

    rollback to DELETE_CHAT_OBJ_INCLUSION;
Line: 378

end delete_chat_obj_inclusion;