[Home] [Help]
25: return varchar2 is
26: ------------------------------------------------------------------------
27: cursor RespExclAttrs(resp_id number,appl_id number,attr_code varchar2) is
28: select attribute_code
29: from ak_excluded_items
30: where responsibility_id = resp_id
31: and resp_application_id = appl_id
32: and attribute_code = attr_code;
33: