DBA Data[Home] [Help]

APPS.OKL_OPERANDS_PUB SQL Statements

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

Line: 11

  PROCEDURE insert_operands(
                         p_api_version                  IN  NUMBER
                        ,p_init_msg_list                IN  VARCHAR2 DEFAULT OKC_API.G_FALSE
                        ,x_return_status                OUT NOCOPY VARCHAR2
                        ,x_msg_count                    OUT NOCOPY NUMBER
                        ,x_msg_data                     OUT NOCOPY VARCHAR2
                        ,p_opdv_rec                     IN  opdv_rec_type
                        ,x_opdv_rec                     OUT NOCOPY opdv_rec_type
                        ) IS
    l_opdv_rec                        opdv_rec_type;
Line: 22

    l_api_name                        CONSTANT VARCHAR2(30)  := 'insert_operands';
Line: 27

    SAVEPOINT insert_operands;
Line: 32

    okl_opd_pvt.insert_row(
                               p_api_version   => p_api_version
                              ,p_init_msg_list => p_init_msg_list
                              ,x_return_status => l_return_status
                              ,x_msg_count     => x_msg_count
                              ,x_msg_data      => x_msg_data
                              ,p_opdv_rec      => l_opdv_rec
                              ,x_opdv_rec      => x_opdv_rec
                              );
Line: 56

      ROLLBACK TO insert_operands;
Line: 64

      ROLLBACK TO insert_operands;
Line: 71

      FND_MSG_PUB.ADD_EXC_MSG('OKL_OPERANDS_PUB','insert_operands');
Line: 78

  END insert_operands;
Line: 81

  PROCEDURE insert_operands(
                         p_api_version                  IN  NUMBER
                        ,p_init_msg_list                IN  VARCHAR2 DEFAULT OKC_API.G_FALSE
                        ,x_return_status                OUT NOCOPY VARCHAR2
                        ,x_msg_count                    OUT NOCOPY NUMBER
                        ,x_msg_data                     OUT NOCOPY VARCHAR2
                        ,p_opdv_tbl                     IN  opdv_tbl_type
                        ,x_opdv_tbl                     OUT NOCOPY opdv_tbl_type
                        ) IS
    l_opdv_tbl                        opdv_tbl_type;
Line: 93

    l_api_name                        CONSTANT VARCHAR2(30)  := 'insert_operands';
Line: 100

    SAVEPOINT insert_operands;
Line: 109

        insert_operands (
                           p_api_version   => p_api_version
                          ,p_init_msg_list => p_init_msg_list
                          ,x_return_status => x_return_status
                          ,x_msg_count     => x_msg_count
                          ,x_msg_data      => x_msg_data
                          ,p_opdv_rec      => p_opdv_tbl(i)
                          ,x_opdv_rec      => x_opdv_tbl(i)
                          );
Line: 150

      ROLLBACK TO insert_operands;
Line: 158

      ROLLBACK TO insert_operands;
Line: 165

      FND_MSG_PUB.ADD_EXC_MSG('OKL_OPERANDS_PUB','insert_operands');
Line: 172

  END insert_operands;
Line: 312

  PROCEDURE update_operands(
                         p_api_version                  IN  NUMBER
                        ,p_init_msg_list                IN  VARCHAR2 DEFAULT OKC_API.G_FALSE
                        ,x_return_status                OUT NOCOPY VARCHAR2
                        ,x_msg_count                    OUT NOCOPY NUMBER
                        ,x_msg_data                     OUT NOCOPY VARCHAR2
                        ,p_opdv_rec                     IN  opdv_rec_type
                        ,x_opdv_rec                     OUT NOCOPY opdv_rec_type
                        ) IS
    l_opdv_rec                        opdv_rec_type;
Line: 324

    l_api_name                        CONSTANT VARCHAR2(30)  := 'update_operands';
Line: 328

    SAVEPOINT update_operands;
Line: 333

    okl_opd_pvt.update_row(
                               p_api_version   => p_api_version
                              ,p_init_msg_list => p_init_msg_list
                              ,x_return_status => l_return_status
                              ,x_msg_count     => x_msg_count
                              ,x_msg_data      => x_msg_data
                              ,p_opdv_rec      => l_opdv_rec
                              ,x_opdv_rec      => x_opdv_rec
                              );
Line: 356

      ROLLBACK TO update_operands;
Line: 364

      ROLLBACK TO update_operands;
Line: 371

      FND_MSG_PUB.ADD_EXC_MSG('OKL_OPERANDS_PUB','update_operands');
Line: 378

  END update_operands;
Line: 381

  PROCEDURE update_operands(
                         p_api_version                  IN  NUMBER
                        ,p_init_msg_list                IN  VARCHAR2 DEFAULT OKC_API.G_FALSE
                        ,x_return_status                OUT NOCOPY VARCHAR2
                        ,x_msg_count                    OUT NOCOPY NUMBER
                        ,x_msg_data                     OUT NOCOPY VARCHAR2
                        ,p_opdv_tbl                     IN  opdv_tbl_type
                        ,x_opdv_tbl                     OUT NOCOPY opdv_tbl_type
                        ) IS
    l_opdv_tbl                        opdv_tbl_type;
Line: 393

    l_api_name                        CONSTANT VARCHAR2(30)  := 'update_operands';
Line: 400

    SAVEPOINT update_operands;
Line: 409

        update_operands (
                           p_api_version   => p_api_version
                          ,p_init_msg_list => p_init_msg_list
                          ,x_return_status => x_return_status
                          ,x_msg_count     => x_msg_count
                          ,x_msg_data      => x_msg_data
                          ,p_opdv_rec      => p_opdv_tbl(i)
                          ,x_opdv_rec      => x_opdv_tbl(i)
                          );
Line: 450

      ROLLBACK TO update_operands;
Line: 458

      ROLLBACK TO update_operands;
Line: 465

      FND_MSG_PUB.ADD_EXC_MSG('OKL_OPERANDS_PUB','update_operands');
Line: 472

  END update_operands;
Line: 474

  PROCEDURE delete_operands(
                         p_api_version                  IN  NUMBER
                        ,p_init_msg_list                IN  VARCHAR2 DEFAULT OKC_API.G_FALSE
                        ,x_return_status                OUT NOCOPY VARCHAR2
                        ,x_msg_count                    OUT NOCOPY NUMBER
                        ,x_msg_data                     OUT NOCOPY VARCHAR2
                        ,p_opdv_rec                     IN  opdv_rec_type
                        ) IS
    l_opdv_rec                        opdv_rec_type;
Line: 485

    l_api_name                        CONSTANT VARCHAR2(30)  := 'delete_operands';
Line: 489

    SAVEPOINT delete_operands;
Line: 494

    okl_opd_pvt.delete_row(
                               p_api_version   => p_api_version
                              ,p_init_msg_list => p_init_msg_list
                              ,x_return_status => l_return_status
                              ,x_msg_count     => x_msg_count
                              ,x_msg_data      => x_msg_data
                              ,p_opdv_rec      => l_opdv_rec
                              );
Line: 513

      ROLLBACK TO delete_operands;
Line: 521

      ROLLBACK TO delete_operands;
Line: 528

      FND_MSG_PUB.ADD_EXC_MSG('OKL_OPERANDS_PUB','delete_operands');
Line: 535

  END delete_operands;
Line: 538

  PROCEDURE delete_operands(
                         p_api_version                  IN  NUMBER
                        ,p_init_msg_list                IN  VARCHAR2 DEFAULT OKC_API.G_FALSE
                        ,x_return_status                OUT NOCOPY VARCHAR2
                        ,x_msg_count                    OUT NOCOPY NUMBER
                        ,x_msg_data                     OUT NOCOPY VARCHAR2
                        ,p_opdv_tbl                     IN  opdv_tbl_type
                        ) IS
    l_opdv_tbl                        opdv_tbl_type;
Line: 549

    l_api_name                        CONSTANT VARCHAR2(30)  := 'delete_operands';
Line: 556

    SAVEPOINT delete_operands;
Line: 565

        delete_operands (
                           p_api_version   => p_api_version
                          ,p_init_msg_list => p_init_msg_list
                          ,x_return_status => x_return_status
                          ,x_msg_count     => x_msg_count
                          ,x_msg_data      => x_msg_data
                          ,p_opdv_rec      => p_opdv_tbl(i)
                          );
Line: 602

      ROLLBACK TO delete_operands;
Line: 610

      ROLLBACK TO delete_operands;
Line: 617

      FND_MSG_PUB.ADD_EXC_MSG('OKL_OPERANDS_PUB','delete_operands');
Line: 624

  END delete_operands;