DBA Data[Home] [Help]

APPS.PO_SUP_CHG_REQUEST_WF_GRP dependencies on FND_API

Line 23: x_return_status := FND_API.G_RET_STS_SUCCESS;

19: l_acc_req_flag varchar2(1);
20: l_call_PR_flag varchar2(1);
21: l_pending_count number;
22: BEGIN
23: x_return_status := FND_API.G_RET_STS_SUCCESS;
24:
25: if(p_release_id is null) then
26: select nvl(acceptance_required_flag,'N')
27: into l_acc_req_flag

Line 61: p_init_msg_list => FND_API.G_FALSE,

57: if(l_pending_count = 0) then
58: if(l_acc_req_flag = 'Y') then
59: l_all_responded := po_acknowledge_po_grp.all_shipments_responded(
60: p_api_version => 1.0,
61: p_init_msg_list => FND_API.G_FALSE,
62: p_po_header_id => p_header_id,
63: p_po_release_id => p_release_id,
64: p_revision_num => p_revision_num);
65: if(l_all_responded = 'T') then

Line 86: if(l_return_status <> FND_API.G_RET_STS_SUCCESS) then

82: p_user_id => fnd_global.user_id,
83: x_err_msg => l_err_msg,
84: x_return_code => l_return_code,
85: x_doc_check_rec_type => l_doc_check_rec_type);
86: if(l_return_status <> FND_API.G_RET_STS_SUCCESS) then
87: x_return_status := FND_API.G_RET_STS_ERROR;
88: x_return_msg := 'BCD:ERROR:'||l_err_msg;
89: end if;
90: end if;

Line 87: x_return_status := FND_API.G_RET_STS_ERROR;

83: x_err_msg => l_err_msg,
84: x_return_code => l_return_code,
85: x_doc_check_rec_type => l_doc_check_rec_type);
86: if(l_return_status <> FND_API.G_RET_STS_SUCCESS) then
87: x_return_status := FND_API.G_RET_STS_ERROR;
88: x_return_msg := 'BCD:ERROR:'||l_err_msg;
89: end if;
90: end if;
91: exception when others then

Line 92: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

88: x_return_msg := 'BCD:ERROR:'||l_err_msg;
89: end if;
90: end if;
91: exception when others then
92: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
93: x_return_msg := 'BCD:UNEXP:'||l_progress||':'||l_return_status||':'||sqlerrm;
94: END Buyer_CancelDocWithChn;
95:
96: