DBA Data[Home] [Help]

APPS.EC_XML_UTILS dependencies on ECE_MAPPINGS

Line 10: from ece_mappings

6: p_map_id IN number
7: )
8: is
9: select transaction_type
10: from ece_mappings
11: where map_id = p_map_id;
12:
13: cursor get_external_entities
14: (

Line 52: from ece_mappings

48: p_map_id IN number
49: )
50: is
51: select root_element
52: from ece_mappings
53: where transaction_type = p_transaction_type
54: and map_id = p_map_id;
55:
56: procedure create_vo_tree

Line 62: i_transaction_type ece_mappings.transaction_type%TYPE;

58: i_map_id IN number,
59: i_run_id IN number
60: )
61: is
62: i_transaction_type ece_mappings.transaction_type%TYPE;
63: i_string varchar2(32000);
64: i_plural_name varchar2(2000);
65: i_singular_name varchar2(2000);
66: i_where_clause varchar2(2000);