DBA Data[Home] [Help]

APPS.OKL_SETUPOPTIONS_PUB SQL Statements

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

Line: 43

  PROCEDURE insert_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_optv_rec         IN  optv_rec_type,
                           x_optv_rec         OUT NOCOPY optv_rec_type) IS
    l_optv_rec                        optv_rec_type;
Line: 52

    l_api_name                        CONSTANT VARCHAR2(30)  := 'insert_options';
Line: 57

    SAVEPOINT sp_insert_options;
Line: 62

	-- call process api to insert options
    okl_setupoptions_pvt.insert_options(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_optv_rec      => l_optv_rec,
                              			x_optv_rec      => x_optv_rec);
Line: 84

      ROLLBACK TO sp_insert_options;
Line: 94

      ROLLBACK TO sp_insert_options;
Line: 106

      FND_MSG_PUB.ADD_EXC_MSG('OKL_SETUPOPTIONS_PUB','insert_options');
Line: 112

  END insert_options;
Line: 118

  PROCEDURE update_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_optv_rec         IN  optv_rec_type,
                        	    x_optv_rec         OUT NOCOPY optv_rec_type) IS
    l_optv_rec                        optv_rec_type;
Line: 128

    l_api_name                        CONSTANT VARCHAR2(30)  := 'update_options';
Line: 132

    SAVEPOINT sp_update_options;
Line: 137

	-- call process api to update options
    okl_setupoptions_pvt.update_options(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_optv_rec      => l_optv_rec,
                              			x_optv_rec      => x_optv_rec);
Line: 159

      ROLLBACK TO sp_update_options;
Line: 169

      ROLLBACK TO sp_update_options;
Line: 181

      FND_MSG_PUB.ADD_EXC_MSG('OKL_SETUPOPTIONS_PUB','update_options');
Line: 187

  END update_options;