DBA Data[Home] [Help]

APPS.OE_ORDER_UTIL dependencies on AK_ATTRIBUTES_VL

Line 25: -- of column - NAME on AK_ATTRIBUTES_VL was increased

21: RETURN VARCHAR2
22: IS
23: -- Fix bug#1349549:
24: -- Increased l_attribute_name length to 240 as length
25: -- of column - NAME on AK_ATTRIBUTES_VL was increased
26: l_attribute_name VARCHAR2(240);
27: BEGIN
28:
29: -- Bug 2648277 => NAME column is not translatable any more.

Line 33: FROM AK_ATTRIBUTES_VL AK

29: -- Bug 2648277 => NAME column is not translatable any more.
30: -- Use ATTRIBUTE_LABEL_LONG column, this is translated.
31: SELECT AK.ATTRIBUTE_LABEL_LONG
32: INTO l_attribute_name
33: FROM AK_ATTRIBUTES_VL AK
34: WHERE ak.attribute_code = upper(p_attribute_code)
35: AND ak.attribute_application_id = 660;
36:
37: RETURN(l_attribute_name);