DBA Data[Home] [Help]

APPS.OTA_CHAT_API SQL Statements

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

Line: 152

procedure update_chat
  (p_validate                     in  boolean          default false
  ,p_effective_date               in  date
  ,p_name                         in  varchar2
  ,p_description                  in  varchar2
  ,p_business_group_id            in  number
  ,p_start_date_active            in  date             default hr_api.g_date
  ,p_end_date_active              in  date             default hr_api.g_date
  ,p_start_time_active            in  varchar2         default hr_api.g_varchar2
  ,p_end_time_active              in  varchar2         default hr_api.g_varchar2
  ,p_timezone_code                in  varchar2         default hr_api.g_varchar2
  ,p_public_flag                  in  varchar2         default hr_api.g_varchar2
  ,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 Forum';
Line: 178

  savepoint UPDATE_CHAT;
Line: 186

ota_chat_bk2.update_chat_b
  (
  p_effective_date
  ,p_name
  ,p_description
  ,p_business_group_id
  ,p_start_date_active
  ,p_end_date_active
  ,p_start_time_active
  ,p_end_time_active
  ,p_timezone_code
  ,p_public_flag
  ,p_chat_id
  ,p_object_version_number);
Line: 228

ota_chat_bk2.update_chat_a
  (
  p_effective_date
  ,p_name
  ,p_description
  ,p_business_group_id
  ,p_start_date_active
  ,p_end_date_active
  ,p_start_time_active
  ,p_end_time_active
  ,p_timezone_code
  ,p_public_flag
  ,p_chat_id
  ,p_object_version_number);
Line: 259

    rollback to UPDATE_CHAT;
Line: 271

    rollback to UPDATE_CHAT;
Line: 275

end update_chat;
Line: 283

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

  savepoint DELETE_CHAT;
Line: 308

  ota_chat_bk3.delete_chat_b
    (
     p_chat_id
    ,p_object_version_number
  );
Line: 333

    ota_chat_bk3.delete_chat_a
      (
       p_chat_id
      ,p_object_version_number
    );
Line: 356

    rollback to DELETE_CHAT;
Line: 367

    rollback to DELETE_CHAT;
Line: 370

end delete_chat;