DBA Data[Home] [Help]

APPS.OKL_PRODUCT_OPTIONS_PUB SQL Statements

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

Line: 11

  PROCEDURE insert_product_options(
                         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_ponv_rec                     IN  ponv_rec_type
                        ,x_ponv_rec                     OUT NOCOPY ponv_rec_type
                        ) IS
    l_ponv_rec                        ponv_rec_type;
Line: 22

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

    SAVEPOINT insert_product_options;
Line: 32

    okl_pon_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_ponv_rec      => l_ponv_rec
                              ,x_ponv_rec      => x_ponv_rec
                              );
Line: 56

      ROLLBACK TO insert_product_options;
Line: 64

      ROLLBACK TO insert_product_options;
Line: 71

      FND_MSG_PUB.ADD_EXC_MSG('OKL_PRODUCT_OPTIONS_PUB','insert_product_options');
Line: 78

  END insert_product_options;
Line: 81

  PROCEDURE insert_product_options(
                         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_ponv_tbl                     IN  ponv_tbl_type
                        ,x_ponv_tbl                     OUT NOCOPY ponv_tbl_type
                        ) IS
    l_ponv_tbl                        ponv_tbl_type;
Line: 93

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

    SAVEPOINT insert_product_options;
Line: 109

        insert_product_options (
                           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_ponv_rec      => p_ponv_tbl(i)
                          ,x_ponv_rec      => x_ponv_tbl(i)
                          );
Line: 150

      ROLLBACK TO insert_product_options;
Line: 158

      ROLLBACK TO insert_product_options;
Line: 165

      FND_MSG_PUB.ADD_EXC_MSG('OKL_PRODUCT_OPTIONS_PUB','insert_product_options');
Line: 172

  END insert_product_options;
Line: 312

  PROCEDURE update_product_options(
                         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_ponv_rec                     IN  ponv_rec_type
                        ,x_ponv_rec                     OUT NOCOPY ponv_rec_type
                        ) IS
    l_ponv_rec                        ponv_rec_type;
Line: 324

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

    SAVEPOINT update_product_options;
Line: 333

    okl_pon_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_ponv_rec      => l_ponv_rec
                              ,x_ponv_rec      => x_ponv_rec
                              );
Line: 356

      ROLLBACK TO update_product_options;
Line: 364

      ROLLBACK TO update_product_options;
Line: 371

      FND_MSG_PUB.ADD_EXC_MSG('OKL_PRODUCT_OPTIONS_PUB','update_product_options');
Line: 378

  END update_product_options;
Line: 381

  PROCEDURE update_product_options(
                         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_ponv_tbl                     IN  ponv_tbl_type
                        ,x_ponv_tbl                     OUT NOCOPY ponv_tbl_type
                        ) IS
    l_ponv_tbl                        ponv_tbl_type;
Line: 393

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

    SAVEPOINT update_product_options;
Line: 409

        update_product_options (
                           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_ponv_rec      => p_ponv_tbl(i)
                          ,x_ponv_rec      => x_ponv_tbl(i)
                          );
Line: 450

      ROLLBACK TO update_product_options;
Line: 458

      ROLLBACK TO update_product_options;
Line: 465

      FND_MSG_PUB.ADD_EXC_MSG('OKL_PRODUCT_OPTIONS_PUB','update_product_options');
Line: 472

  END update_product_options;
Line: 474

  PROCEDURE delete_product_options(
                         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_ponv_rec                     IN  ponv_rec_type
                        ) IS
    l_ponv_rec                        ponv_rec_type;
Line: 485

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

    SAVEPOINT delete_product_options;
Line: 494

    okl_pon_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_ponv_rec      => l_ponv_rec
                              );
Line: 513

      ROLLBACK TO delete_product_options;
Line: 521

      ROLLBACK TO delete_product_options;
Line: 528

      FND_MSG_PUB.ADD_EXC_MSG('OKL_PRODUCT_OPTIONS_PUB','delete_product_options');
Line: 535

  END delete_product_options;
Line: 538

  PROCEDURE delete_product_options(
                         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_ponv_tbl                     IN  ponv_tbl_type
                        ) IS
    l_ponv_tbl                        ponv_tbl_type;
Line: 549

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

    SAVEPOINT delete_product_options;
Line: 565

        delete_product_options (
                           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_ponv_rec      => p_ponv_tbl(i)
                          );
Line: 602

      ROLLBACK TO delete_product_options;
Line: 610

      ROLLBACK TO delete_product_options;
Line: 617

      FND_MSG_PUB.ADD_EXC_MSG('OKL_PRODUCT_OPTIONS_PUB','delete_product_options');
Line: 624

  END delete_product_options;