DBA Data[Home] [Help]

APPS.OKL_PRODUCTS_PUB SQL Statements

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

Line: 11

  PROCEDURE insert_products(
                         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_pdtv_rec                     IN  pdtv_rec_type
                        ,x_pdtv_rec                     OUT NOCOPY pdtv_rec_type
                        ) IS
    l_pdtv_rec                        pdtv_rec_type;
Line: 22

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

    SAVEPOINT insert_products;
Line: 32

    okl_pdt_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_pdtv_rec      => l_pdtv_rec
                              ,x_pdtv_rec      => x_pdtv_rec
                              );
Line: 56

      ROLLBACK TO insert_products;
Line: 64

      ROLLBACK TO insert_products;
Line: 71

      FND_MSG_PUB.ADD_EXC_MSG('OKL_PRODUCTS_PUB','insert_products');
Line: 78

  END insert_products;
Line: 81

  PROCEDURE insert_products(
                         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_pdtv_tbl                     IN  pdtv_tbl_type
                        ,x_pdtv_tbl                     OUT NOCOPY pdtv_tbl_type
                        ) IS
    l_pdtv_tbl                        pdtv_tbl_type;
Line: 93

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

    SAVEPOINT insert_products;
Line: 109

        insert_products (
                           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_pdtv_rec      => p_pdtv_tbl(i)
                          ,x_pdtv_rec      => x_pdtv_tbl(i)
                          );
Line: 150

      ROLLBACK TO insert_products;
Line: 158

      ROLLBACK TO insert_products;
Line: 165

      FND_MSG_PUB.ADD_EXC_MSG('OKL_PRODUCTS_PUB','insert_products');
Line: 172

  END insert_products;
Line: 312

  PROCEDURE update_products(
                         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_pdtv_rec                     IN  pdtv_rec_type
                        ,x_pdtv_rec                     OUT NOCOPY pdtv_rec_type
                        ) IS
    l_pdtv_rec                        pdtv_rec_type;
Line: 324

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

    SAVEPOINT update_products;
Line: 333

    okl_pdt_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_pdtv_rec      => l_pdtv_rec
                              ,x_pdtv_rec      => x_pdtv_rec
                              );
Line: 356

      ROLLBACK TO update_products;
Line: 364

      ROLLBACK TO update_products;
Line: 371

      FND_MSG_PUB.ADD_EXC_MSG('OKL_PRODUCTS_PUB','update_products');
Line: 378

  END update_products;
Line: 381

  PROCEDURE update_products(
                         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_pdtv_tbl                     IN  pdtv_tbl_type
                        ,x_pdtv_tbl                     OUT NOCOPY pdtv_tbl_type
                        ) IS
    l_pdtv_tbl                        pdtv_tbl_type;
Line: 393

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

    SAVEPOINT update_products;
Line: 409

        update_products (
                           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_pdtv_rec      => p_pdtv_tbl(i)
                          ,x_pdtv_rec      => x_pdtv_tbl(i)
                          );
Line: 450

      ROLLBACK TO update_products;
Line: 458

      ROLLBACK TO update_products;
Line: 465

      FND_MSG_PUB.ADD_EXC_MSG('OKL_PRODUCTS_PUB','update_products');
Line: 472

  END update_products;
Line: 474

  PROCEDURE delete_products(
                         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_pdtv_rec                     IN  pdtv_rec_type
                        ) IS
    l_pdtv_rec                        pdtv_rec_type;
Line: 485

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

    SAVEPOINT delete_products;
Line: 494

    okl_pdt_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_pdtv_rec      => l_pdtv_rec
                              );
Line: 513

      ROLLBACK TO delete_products;
Line: 521

      ROLLBACK TO delete_products;
Line: 528

      FND_MSG_PUB.ADD_EXC_MSG('OKL_PRODUCTS_PUB','delete_products');
Line: 535

  END delete_products;
Line: 538

  PROCEDURE delete_products(
                         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_pdtv_tbl                     IN  pdtv_tbl_type
                        ) IS
    l_pdtv_tbl                        pdtv_tbl_type;
Line: 549

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

    SAVEPOINT delete_products;
Line: 565

        delete_products (
                           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_pdtv_rec      => p_pdtv_tbl(i)
                          );
Line: 602

      ROLLBACK TO delete_products;
Line: 610

      ROLLBACK TO delete_products;
Line: 617

      FND_MSG_PUB.ADD_EXC_MSG('OKL_PRODUCTS_PUB','delete_products');
Line: 624

  END delete_products;