DBA Data[Home] [Help]

APPS.OKS_RENEW_PVT dependencies on OKC_API

Line 56: x_return_status := OKC_API.G_RET_STS_SUCCESS;

52: from v$parameter
53: where name = 'utl_file_dir';
54:
55: Begin
56: x_return_status := OKC_API.G_RET_STS_SUCCESS;
57:
58: --anjkumar, for R12 nobody should use this procedure for loggin
59: --but for old modules that are still using this, make sure that this also
60: --writes to the standard fnd_log_messages table

Line 108: x_return_status := OKC_API.G_RET_STS_UNEXP_ERROR;

104: End If;
105:
106: Exception
107: when utl_file.INVALID_PATH then
108: x_return_status := OKC_API.G_RET_STS_UNEXP_ERROR;
109: x_msg_data := l_error_msg || ' Invalid Path';
110: x_msg_count:= 1;
111: OKC_API.set_message
112: (

Line 111: OKC_API.set_message

107: when utl_file.INVALID_PATH then
108: x_return_status := OKC_API.G_RET_STS_UNEXP_ERROR;
109: x_msg_data := l_error_msg || ' Invalid Path';
110: x_msg_count:= 1;
111: OKC_API.set_message
112: (
113: G_APP_NAME,
114: G_UNEXPECTED_ERROR,
115: G_SQLCODE_TOKEN,

Line 121: x_return_status := OKC_API.G_RET_STS_UNEXP_ERROR;

117: G_SQLERRM_TOKEN,
118: 'Invalid path'
119: );
120: when utl_file.INVALID_OPERATION then
121: x_return_status := OKC_API.G_RET_STS_UNEXP_ERROR;
122: x_msg_data := l_error_msg || ' Invalid operation';
123: x_msg_count:= 1;
124: OKC_API.set_message
125: (

Line 124: OKC_API.set_message

120: when utl_file.INVALID_OPERATION then
121: x_return_status := OKC_API.G_RET_STS_UNEXP_ERROR;
122: x_msg_data := l_error_msg || ' Invalid operation';
123: x_msg_count:= 1;
124: OKC_API.set_message
125: (
126: G_APP_NAME,
127: G_UNEXPECTED_ERROR,
128: G_SQLCODE_TOKEN,

Line 135: x_return_status := OKC_API.G_RET_STS_UNEXP_ERROR;

131: 'Invalid operation'
132: );
133:
134: when others then
135: x_return_status := OKC_API.G_RET_STS_UNEXP_ERROR;
136: x_msg_data := l_error_msg || ' ' || SQLERRM;
137: x_msg_count:= 1;
138: OKC_API.set_message
139: (

Line 138: OKC_API.set_message

134: when others then
135: x_return_status := OKC_API.G_RET_STS_UNEXP_ERROR;
136: x_msg_data := l_error_msg || ' ' || SQLERRM;
137: x_msg_count:= 1;
138: OKC_API.set_message
139: (
140: G_APP_NAME,
141: G_UNEXPECTED_ERROR,
142: G_SQLCODE_TOKEN,