DBA Data[Home] [Help]

APPS.OKL_SETUPCONTEXTGROUPS_PUB SQL Statements

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

Line: 43

  PROCEDURE insert_contextgroups(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_cgrv_rec         IN  cgrv_rec_type,
                        		 x_cgrv_rec         OUT NOCOPY cgrv_rec_type) IS
    l_cgrv_rec                        cgrv_rec_type;
Line: 52

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

    SAVEPOINT sp_insert_contextgroups;
Line: 62

	-- call process api to insert context groups
    okl_setupcontextgroups_pvt.insert_contextgroups(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_cgrv_rec      => l_cgrv_rec,
                              			  			x_cgrv_rec      => x_cgrv_rec);
Line: 84

      ROLLBACK TO sp_insert_contextgroups;
Line: 94

      ROLLBACK TO sp_insert_contextgroups;
Line: 106

      FND_MSG_PUB.ADD_EXC_MSG('OKL_SETUPCONTEXTGROUPS_PUB','insert_contextgroups');
Line: 112

  END insert_contextgroups;
Line: 118

  PROCEDURE update_contextgroups(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_cgrv_rec         IN  cgrv_rec_type,
                        		 x_cgrv_rec         OUT NOCOPY cgrv_rec_type) IS
    l_cgrv_rec                        cgrv_rec_type;
Line: 128

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

    SAVEPOINT sp_update_contextgroups;
Line: 137

	-- call process api to update context groups
    okl_setupcontextgroups_pvt.update_contextgroups(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_cgrv_rec      => l_cgrv_rec,
                              			  			x_cgrv_rec      => x_cgrv_rec);
Line: 159

      ROLLBACK TO sp_update_contextgroups;
Line: 169

      ROLLBACK TO sp_update_contextgroups;
Line: 181

      FND_MSG_PUB.ADD_EXC_MSG('OKL_SETUPCONTEXTGROUPS_PUB','update_contextgroups');
Line: 187

  END update_contextgroups;