DBA Data[Home] [Help]

APPS.OKL_LEGAL_ENTITY_UTIL dependencies on OKL_API

Line 13: x_return_status := OKL_API.G_RET_STS_SUCCESS;

9: x_msg_count OUT NOCOPY NUMBER)
10: IS
11:
12: BEGIN
13: x_return_status := OKL_API.G_RET_STS_SUCCESS;
14: XLE_UTILITIES_GRP.Get_LegalEntity_Info
15: (x_return_status => x_return_status ,
16: x_msg_count => x_msg_count,
17: x_msg_data => x_msg_data,

Line 22: If (x_return_status = OKL_API.G_RET_STS_UNEXP_ERROR) then

18: P_PARTY_ID => NULL,
19: P_LegalEntity_ID => p_legal_entity_id,
20: X_LEGALENTITY_INFO => x_legal_entity_rec);
21:
22: If (x_return_status = OKL_API.G_RET_STS_UNEXP_ERROR) then
23: raise OKL_API.G_EXCEPTION_UNEXPECTED_ERROR;
24: ElSIF (x_return_status = OKL_API.G_RET_STS_ERROR) then
25: raise OKL_API.G_EXCEPTION_ERROR;
26: End If;

Line 23: raise OKL_API.G_EXCEPTION_UNEXPECTED_ERROR;

19: P_LegalEntity_ID => p_legal_entity_id,
20: X_LEGALENTITY_INFO => x_legal_entity_rec);
21:
22: If (x_return_status = OKL_API.G_RET_STS_UNEXP_ERROR) then
23: raise OKL_API.G_EXCEPTION_UNEXPECTED_ERROR;
24: ElSIF (x_return_status = OKL_API.G_RET_STS_ERROR) then
25: raise OKL_API.G_EXCEPTION_ERROR;
26: End If;
27:

Line 24: ElSIF (x_return_status = OKL_API.G_RET_STS_ERROR) then

20: X_LEGALENTITY_INFO => x_legal_entity_rec);
21:
22: If (x_return_status = OKL_API.G_RET_STS_UNEXP_ERROR) then
23: raise OKL_API.G_EXCEPTION_UNEXPECTED_ERROR;
24: ElSIF (x_return_status = OKL_API.G_RET_STS_ERROR) then
25: raise OKL_API.G_EXCEPTION_ERROR;
26: End If;
27:
28: EXCEPTION

Line 25: raise OKL_API.G_EXCEPTION_ERROR;

21:
22: If (x_return_status = OKL_API.G_RET_STS_UNEXP_ERROR) then
23: raise OKL_API.G_EXCEPTION_UNEXPECTED_ERROR;
24: ElSIF (x_return_status = OKL_API.G_RET_STS_ERROR) then
25: raise OKL_API.G_EXCEPTION_ERROR;
26: End If;
27:
28: EXCEPTION
29: when OKL_API.G_EXCEPTION_ERROR then

Line 29: when OKL_API.G_EXCEPTION_ERROR then

25: raise OKL_API.G_EXCEPTION_ERROR;
26: End If;
27:
28: EXCEPTION
29: when OKL_API.G_EXCEPTION_ERROR then
30: null;
31:
32: when OKL_API.G_EXCEPTION_UNEXPECTED_ERROR then
33: null;

Line 32: when OKL_API.G_EXCEPTION_UNEXPECTED_ERROR then

28: EXCEPTION
29: when OKL_API.G_EXCEPTION_ERROR then
30: null;
31:
32: when OKL_API.G_EXCEPTION_UNEXPECTED_ERROR then
33: null;
34:
35: when OTHERS then
36: null;