DBA Data[Home] [Help]

APPS.OKS_OC_INT_KTO_PVT dependencies on JTF_OBJECTS_B

Line 252: Function is_jtf_source_table( p_object_code jtf_objects_b.object_code%type,

248: FND_FILE.PUT_LINE( FND_FILE.LOG, '============================');
249: END IF;
250: END print_error;
251:
252: Function is_jtf_source_table( p_object_code jtf_objects_b.object_code%type,
253: p_from_table JTF_OBJECTS_B.from_table%type
254: )
255:
256: return boolean is

Line 253: p_from_table JTF_OBJECTS_B.from_table%type

249: END IF;
250: END print_error;
251:
252: Function is_jtf_source_table( p_object_code jtf_objects_b.object_code%type,
253: p_from_table JTF_OBJECTS_B.from_table%type
254: )
255:
256: return boolean is
257: cursor c_get_jtf_source_table(b_object_code varchar2,b_from_table varchar2) is

Line 258: select 'x' from jtf_objects_b

254: )
255:
256: return boolean is
257: cursor c_get_jtf_source_table(b_object_code varchar2,b_from_table varchar2) is
258: select 'x' from jtf_objects_b
259: where object_code = b_object_code
260: and from_table like b_from_table||'%';
261:
262: l_found varchar2(1);