DBA Data[Home] [Help]

APPS.OKL_REVERSE_CONTRACT_PVT dependencies on OKC_API

Line 48: OKC_API.SET_MESSAGE(p_app_name => g_app_name

44: l_row_notfound := cntrct_status_cur%NOTFOUND;
45: CLOSE cntrct_status_cur;
46:
47: IF (l_row_notfound) THEN
48: OKC_API.SET_MESSAGE(p_app_name => g_app_name
49: ,p_msg_name => OKL_LLA_CONT_REV_BOOKED);
50: x_return_status := G_RET_STS_ERROR;
51: RAISE G_EXCEPTION_ERROR;
52: END IF;

Line 163: OKC_API.SET_MESSAGE(p_app_name => g_app_name

159: l_row_notfound := trx_type_cur%NOTFOUND;
160: CLOSE trx_type_cur;
161:
162: IF NOT (l_row_notfound) THEN
163: OKC_API.SET_MESSAGE(p_app_name => g_app_name
164: ,p_msg_name => okl_lla_cont_rev_trx_type
165: ,p_token1 => g_source_table
166: ,p_token1_value => g_okl_txl_cntrct_lns);
167: x_return_status := G_RET_STS_ERROR;

Line 177: OKC_API.SET_MESSAGE(p_app_name => g_app_name

173: l_row_notfound := asset_cur%NOTFOUND;
174: CLOSE asset_cur;
175:
176: IF NOT (l_row_notfound) THEN
177: OKC_API.SET_MESSAGE(p_app_name => g_app_name
178: ,p_msg_name => okl_lla_cont_rev_trx_type
179: ,p_token1 => g_source_table
180: ,p_token1_value => g_okl_txl_assets_b);
181: x_return_status := G_RET_STS_ERROR;

Line 191: OKC_API.SET_MESSAGE(p_app_name => g_app_name

187: l_row_notfound := ap_inv_cur%NOTFOUND;
188: CLOSE ap_inv_cur;
189:
190: IF NOT (l_row_notfound) THEN
191: OKC_API.SET_MESSAGE(p_app_name => g_app_name
192: ,p_msg_name => okl_lla_cont_rev_trx_type
193: ,p_token1 => g_source_table
194: ,p_token1_value => g_okl_txl_ap_inv_lns_b);
195: x_return_status := G_RET_STS_ERROR;

Line 206: OKC_API.SET_MESSAGE(p_app_name => g_app_name

202: l_row_found := ar_inv_cur%FOUND;
203: CLOSE ar_inv_cur;
204:
205: IF (l_row_found) THEN
206: OKC_API.SET_MESSAGE(p_app_name => g_app_name
207: ,p_msg_name => OKL_LLA_AR_INV_LINE_EXIST);
208:
209: x_return_status := G_RET_STS_ERROR;
210: RAISE G_EXCEPTION_ERROR;

Line 818: OKC_API.SET_MESSAGE(p_app_name => g_app_name

814:
815:
816: -- Check for the required attributes
817: IF (p_contract_id IS NULL OR p_contract_id = G_MISS_NUM) THEN
818: OKC_API.SET_MESSAGE(p_app_name => g_app_name
819: ,p_msg_name => g_required_value
820: ,p_token1 => g_col_name_token
821: ,p_token1_value => 'Contract ID');
822: x_return_status := G_RET_STS_ERROR;

Line 827: OKC_API.SET_MESSAGE(p_app_name => g_app_name

823: RAISE G_EXCEPTION_ERROR;
824: END IF;
825:
826: IF (p_transaction_date IS NULL OR p_transaction_date = G_MISS_DATE) THEN
827: OKC_API.SET_MESSAGE(p_app_name => g_app_name
828: ,p_msg_name => g_required_value
829: ,p_token1 => g_col_name_token
830: ,p_token1_value => 'Revision Date');
831: x_return_status := G_RET_STS_ERROR;

Line 843: OKC_API.SET_MESSAGE(p_app_name => g_app_name

839: l_row_notfound := cntrct_cur%NOTFOUND;
840: CLOSE cntrct_cur;
841:
842: IF (l_row_notfound) THEN
843: OKC_API.SET_MESSAGE(p_app_name => g_app_name
844: ,p_msg_name => g_invalid_value
845: ,p_token1 => g_col_name_token
846: ,p_token1_value => 'Contract ID');
847: x_return_status := G_RET_STS_ERROR;

Line 897: OKC_API.SET_MESSAGE(p_app_name => g_app_name

893:
894: -- Error out if there are any Rollover Fee lines on a contract.
895:
896: IF (l_row_found) THEN
897: OKC_API.SET_MESSAGE(p_app_name => g_app_name
898: ,p_msg_name => OKL_LA_NO_REV_CONTRACT
899: ,p_token1 => g_col_name_token
900: ,p_token1_value => l_contract_number);
901: x_return_status := G_RET_STS_ERROR;