DBA Data[Home] [Help]

APPS.OKS_BTN_PRINT_PREVIEW_PVT dependencies on OKC_UTIL

Line 235: OKC_UTIL.CHECK_LENGTH( p_view_name => 'OKS_BTN_PR'

231: RAISE G_EXCEPTION_HALT_VALIDATION;
232: END IF;
233:
234: -- Verify the value fits the length of the column in the database
235: OKC_UTIL.CHECK_LENGTH( p_view_name => 'OKS_BTN_PR'
236: ,p_col_name => 'id'
237: ,p_col_value => p_id
238: ,x_return_status => x_return_status);
239: -- verify that length is within allowed limits

Line 273: OKC_UTIL.CHECK_LENGTH( p_view_name => 'OKS_BTN_PR'

269: RAISE G_EXCEPTION_HALT_VALIDATION;
270: END IF;
271:
272: -- Verify the value fits the length of the column in the database
273: OKC_UTIL.CHECK_LENGTH( p_view_name => 'OKS_BTN_PR'
274: ,p_col_name => 'currency_code'
275: ,p_col_value => p_currency_code
276: ,x_return_status => x_return_status);
277: -- verify that length is within allowed limits

Line 311: OKC_UTIL.CHECK_LENGTH( p_view_name => 'OKS_BTN_PR'

307: RAISE G_EXCEPTION_HALT_VALIDATION;
308: END IF;
309:
310: -- Verify the value fits the length of the column in the database
311: OKC_UTIL.CHECK_LENGTH( p_view_name => 'OKS_BTN_PR'
312: ,p_col_name => 'object_version_number'
313: ,p_col_value => p_object_version_number
314: ,x_return_status => x_return_status);
315: -- verify that length is within allowed limits

Line 344: -- Call OKC_UTIL.ADD_VIEW to prepare the PL/SQL table to hold columns of view

340: ) RETURN VARCHAR2 IS
341: l_return_status VARCHAR2(1) := OKC_API.G_RET_STS_SUCCESS;
342: x_return_status VARCHAR2(1) := OKC_API.G_RET_STS_SUCCESS;
343: BEGIN
344: -- Call OKC_UTIL.ADD_VIEW to prepare the PL/SQL table to hold columns of view
345: OKC_UTIL.ADD_VIEW('OKS_BTN_PR', x_return_status);
346: IF (x_return_status <> OKC_API.G_RET_STS_SUCCESS) THEN
347: l_return_status := x_return_status;
348: RAISE G_EXCEPTION_HALT_VALIDATION;

Line 345: OKC_UTIL.ADD_VIEW('OKS_BTN_PR', x_return_status);

341: l_return_status VARCHAR2(1) := OKC_API.G_RET_STS_SUCCESS;
342: x_return_status VARCHAR2(1) := OKC_API.G_RET_STS_SUCCESS;
343: BEGIN
344: -- Call OKC_UTIL.ADD_VIEW to prepare the PL/SQL table to hold columns of view
345: OKC_UTIL.ADD_VIEW('OKS_BTN_PR', x_return_status);
346: IF (x_return_status <> OKC_API.G_RET_STS_SUCCESS) THEN
347: l_return_status := x_return_status;
348: RAISE G_EXCEPTION_HALT_VALIDATION;
349: END IF;