DBA Data[Home] [Help]

APPS.OKS_ORDER_CONTACTS_PUB SQL Statements

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

Line: 12

    g_cocv_rec.last_updated_by       := p_cocv_rec.last_updated_by;
Line: 13

    g_cocv_rec.last_update_date      := p_cocv_rec.last_update_date;
Line: 25

procedure Insert_Order_Contact(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_cocv_rec	IN	cocv_rec_type,
                              x_cocv_rec	OUT NOCOPY	cocv_rec_type) is
l_api_name                     CONSTANT VARCHAR2(30) := 'Insert_Order_Contact';
Line: 104

end Insert_Order_Contact;
Line: 115

procedure Insert_Order_Contact(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_cocv_tbl	IN	cocv_tbl_type,
                              x_cocv_tbl	OUT NOCOPY	cocv_tbl_type) is
i NUMBER;
Line: 130

	    Insert_Order_Contact(p_api_version=>p_api_version,
                              p_init_msg_list=>OKC_API.G_FALSE,
                              x_return_status=>l_return_status,
                              x_msg_count=>x_msg_count,
                              x_msg_data=>x_msg_data,
                              p_cocv_rec=>p_cocv_tbl(i),
                              x_cocv_rec=>x_cocv_tbl(i));
Line: 149

end Insert_Order_Contact;
Line: 151

procedure update_Order_Contact(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_cocv_rec	IN	cocv_rec_type,
                              x_cocv_rec	OUT NOCOPY	cocv_rec_type) is
l_api_name                     CONSTANT VARCHAR2(30) := 'update_Order_Contact';
Line: 182

  OKS_ORDER_CONTACTs_PVT.update_Order_Contact(p_api_version,
                              p_init_msg_list,
                              x_return_status,
                              x_msg_count,
                              x_msg_data,
                              g_cocv_rec,
                              x_cocv_rec);
Line: 230

end update_Order_Contact;
Line: 241

procedure update_Order_Contact(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_cocv_tbl	IN	cocv_tbl_type,
                              x_cocv_tbl	OUT NOCOPY	cocv_tbl_type) is
i NUMBER;
Line: 256

	    update_Order_Contact(p_api_version=>p_api_version,
                              p_init_msg_list=>OKC_API.G_FALSE,
                              x_return_status=>l_return_status,
                              x_msg_count=>x_msg_count,
                              x_msg_data=>x_msg_data,
                              p_cocv_rec=>p_cocv_tbl(i),
                              x_cocv_rec=>x_cocv_tbl(i));
Line: 275

end update_Order_Contact;
Line: 286

procedure delete_Order_Contact(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_cocv_rec	IN	cocv_rec_type) is
l_api_name                     CONSTANT VARCHAR2(30) := 'delete_Order_Contact';
Line: 316

  OKS_ORDER_CONTACTs_PVT.delete_Order_Contact(p_api_version,
                              p_init_msg_list,
                              x_return_status,
                              x_msg_count,
                              x_msg_data,
                              g_cocv_rec);
Line: 362

end delete_Order_Contact;
Line: 373

procedure delete_Order_Contact(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_cocv_tbl	IN	cocv_tbl_type) is
i NUMBER;
Line: 387

	    delete_Order_Contact(p_api_version=>p_api_version,
                              p_init_msg_list=>OKC_API.G_FALSE,
                              x_return_status=>l_return_status,
                              x_msg_count=>x_msg_count,
                              x_msg_data=>x_msg_data,
                              p_cocv_rec=>p_cocv_tbl(i));
Line: 405

end delete_Order_Contact;