DBA Data[Home] [Help]

APPS.WF_EVENT_XML dependencies on WF_CORE

Line 30: Wf_Core.Token('REASON', 'Could not find XML base node ' ||

26: l_node_list := xmldom.getElementsByTagName(l_doc,
27: wf_event_xml.masterTagName);
28: l_length := xmldom.getLength(l_node_list);
29: if l_length = 0 then
30: Wf_Core.Token('REASON', 'Could not find XML base node ' ||
31: wf_event_xml.masterTagName);
32: Wf_Core.Raise('WFSQL_INTERNAL');
33: end if;
34:

Line 32: Wf_Core.Raise('WFSQL_INTERNAL');

28: l_length := xmldom.getLength(l_node_list);
29: if l_length = 0 then
30: Wf_Core.Token('REASON', 'Could not find XML base node ' ||
31: wf_event_xml.masterTagName);
32: Wf_Core.Raise('WFSQL_INTERNAL');
33: end if;
34:
35: -- There should never be more than one on the list, so we want the first.
36: l_doc_node := xmldom.item(l_node_list, 0);

Line 39: Wf_Core.Token('REASON', 'Could not find XML base node in list' ||

35: -- There should never be more than one on the list, so we want the first.
36: l_doc_node := xmldom.item(l_node_list, 0);
37: l_node_name := xmldom.getNodeName(l_doc_node);
38: if l_node_name <> wf_event_xml.masterTagName then
39: Wf_Core.Token('REASON', 'Could not find XML base node in list' ||
40: wf_event_xml.masterTagName);
41: Wf_Core.Raise('WFSQL_INTERNAL');
42: end if;
43:

Line 41: Wf_Core.Raise('WFSQL_INTERNAL');

37: l_node_name := xmldom.getNodeName(l_doc_node);
38: if l_node_name <> wf_event_xml.masterTagName then
39: Wf_Core.Token('REASON', 'Could not find XML base node in list' ||
40: wf_event_xml.masterTagName);
41: Wf_Core.Raise('WFSQL_INTERNAL');
42: end if;
43:
44: /*
45: ** Find the table node

Line 51: Wf_Core.Token('REASON', 'Could not find XML table node ' ||

47: l_node_list := xmldom.getElementsByTagName(xmldom.makeElement(l_doc_node),
48: p_tablename);
49: l_length := xmldom.getLength(l_node_list);
50: if l_length = 0 then
51: Wf_Core.Token('REASON', 'Could not find XML table node ' ||
52: p_tablename);
53: Wf_Core.Raise('WFSQL_INTERNAL');
54: end if;
55:

Line 53: Wf_Core.Raise('WFSQL_INTERNAL');

49: l_length := xmldom.getLength(l_node_list);
50: if l_length = 0 then
51: Wf_Core.Token('REASON', 'Could not find XML table node ' ||
52: p_tablename);
53: Wf_Core.Raise('WFSQL_INTERNAL');
54: end if;
55:
56: -- There should never be more than one on the list, so we want the first.
57: l_doc_node := xmldom.item(l_node_list, 0);

Line 60: Wf_Core.Token('REASON', 'Could not find XML table node in list' ||

56: -- There should never be more than one on the list, so we want the first.
57: l_doc_node := xmldom.item(l_node_list, 0);
58: l_node_name := xmldom.getNodeName(l_doc_node);
59: if l_node_name <> p_tablename then
60: Wf_Core.Token('REASON', 'Could not find XML table node in list' ||
61: p_tablename);
62: Wf_Core.Raise('WFSQL_INTERNAL');
63: end if;
64:

Line 62: Wf_Core.Raise('WFSQL_INTERNAL');

58: l_node_name := xmldom.getNodeName(l_doc_node);
59: if l_node_name <> p_tablename then
60: Wf_Core.Token('REASON', 'Could not find XML table node in list' ||
61: p_tablename);
62: Wf_Core.Raise('WFSQL_INTERNAL');
63: end if;
64:
65: l_node_list := xmldom.getChildNodes(l_doc_node);
66:

Line 70: wf_core.context('Wf_Event_XML', 'findTable', x_message);

66:
67: return l_node_list;
68: exception
69: when others then
70: wf_core.context('Wf_Event_XML', 'findTable', x_message);
71: raise;
72:
73: end findTable;
74:

Line 104: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

100: return l_node;
101:
102: exception
103: when xmldom.INDEX_SIZE_ERR then
104: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
105: raise;
106:
107: when xmldom.DOMSTRING_SIZE_ERR then
108: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

Line 108: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

104: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
105: raise;
106:
107: when xmldom.DOMSTRING_SIZE_ERR then
108: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
109: raise;
110:
111: when xmldom.HIERARCHY_REQUEST_ERR then
112: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

Line 112: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

108: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
109: raise;
110:
111: when xmldom.HIERARCHY_REQUEST_ERR then
112: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
113: raise;
114:
115: when xmldom.WRONG_DOCUMENT_ERR then
116: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

Line 116: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

112: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
113: raise;
114:
115: when xmldom.WRONG_DOCUMENT_ERR then
116: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
117: raise;
118:
119: when xmldom.INVALID_CHARACTER_ERR then
120: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

Line 120: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

116: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
117: raise;
118:
119: when xmldom.INVALID_CHARACTER_ERR then
120: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
121: raise;
122:
123: when xmldom.NO_DATA_ALLOWED_ERR then
124: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

Line 124: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

120: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
121: raise;
122:
123: when xmldom.NO_DATA_ALLOWED_ERR then
124: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
125: raise;
126:
127: when xmldom.NO_MODIFICATION_ALLOWED_ERR then
128: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

Line 128: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

124: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
125: raise;
126:
127: when xmldom.NO_MODIFICATION_ALLOWED_ERR then
128: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
129: raise;
130:
131: when xmldom.NOT_FOUND_ERR then
132: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

Line 132: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

128: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
129: raise;
130:
131: when xmldom.NOT_FOUND_ERR then
132: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
133: raise;
134:
135: when xmldom.NOT_SUPPORTED_ERR then
136: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

Line 136: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

132: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
133: raise;
134:
135: when xmldom.NOT_SUPPORTED_ERR then
136: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
137: raise;
138:
139: when xmldom.INUSE_ATTRIBUTE_ERR then
140: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

Line 140: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);

136: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
137: raise;
138:
139: when xmldom.INUSE_ATTRIBUTE_ERR then
140: wf_core.context('WF_EVENT_XML', 'NewTag', p_tag);
141: raise;
142:
143: end newTag;
144: