DBA Data[Home] [Help]

APPS.OKS_ORDER_DETAILS_PVT SQL Statements

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

Line: 27

  oks_cod_pvt.insert_row(p_api_version   => p_api_version,
                         p_init_msg_list => p_init_msg_list,
                         x_msg_count     => x_msg_count,
                         x_msg_data      => x_msg_data,
                         x_return_status => x_return_status,
                         p_codv_rec      => p_codv_rec,
                         x_codv_rec      => x_codv_rec);
Line: 48

procedure update_Order_Detail(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_codv_rec	IN	codv_rec_type,
                              x_codv_rec	OUT NOCOPY	codv_rec_type) is
begin
  oks_cod_pvt.update_row(p_api_version   => p_api_version,
                         p_init_msg_list => p_init_msg_list,
                         x_msg_count     => x_msg_count,
                         x_msg_data      => x_msg_data,
                         x_return_status => x_return_status,
                         p_codv_rec      => p_codv_rec,
                         x_codv_rec      => x_codv_rec);
Line: 66

end update_Order_Detail;
Line: 76

procedure delete_Order_Detail(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_codv_rec	IN	codv_rec_type) is
BEGIN
  oks_cod_pvt.delete_row(p_api_version   => p_api_version,
                         p_init_msg_list => p_init_msg_list,
                         x_msg_count     => x_msg_count,
                         x_msg_data      => x_msg_data,
                         x_return_status => x_return_status,
                         p_codv_rec      => p_codv_rec);
Line: 96

end delete_Order_Detail;