DBA Data[Home] [Help]

APPS.OKL_JTOT_CONTACT_EXTRACT_PUB dependencies on AK_ATTRIBUTES_VL

Line 63: from ak_region_items ri, ak_regions r, ak_attributes_vl a

59:
60: CURSOR ak_prompt_csr(p_ak_region VARCHAR2, p_ak_attribute VARCHAR2) IS
61: --start modified abhsaxen for performance SQLID 20562543
62: select a.attribute_label_long
63: from ak_region_items ri, ak_regions r, ak_attributes_vl a
64: where ri.region_code = r.region_code
65: and ri.region_application_id = r.region_application_id
66: and ri.attribute_code = a.attribute_code
67: and ri.attribute_application_id = a.attribute_application_id

Line 72: l_ak_prompt AK_ATTRIBUTES_VL.attribute_label_long%TYPE;

68: and ri.region_code = p_ak_region
69: and ri.attribute_code = p_ak_attribute
70: --end modified abhsaxen for performance SQLID 20562543
71: ;
72: l_ak_prompt AK_ATTRIBUTES_VL.attribute_label_long%TYPE;
73: BEGIN
74: OPEN ak_prompt_csr(p_ak_region, p_ak_attribute);
75: FETCH ak_prompt_csr INTO l_ak_prompt;
76: CLOSE ak_prompt_csr;

Line 834: l_amt_ak_prompt AK_ATTRIBUTES_VL.attribute_label_long%type;

830: -- x_return_status := OKC_API.G_RET_STS_SUCCESS;
831:
832: ERR_MSG VARCHAR2(50) := 'DEFAULT';
833:
834: l_amt_ak_prompt AK_ATTRIBUTES_VL.attribute_label_long%type;
835:
836:
837: CURSOR check_party_csr(p_chr_id NUMBER, p_rle_code VARCHAR2,p_id1 VARCHAR2, p_id2 VARCHAR2) IS
838: --Start modified abhsaxen for performance SQLID 20562561