DBA Data[Home] [Help]

APPS.PAY_DK_EHOL_CARD_REQUEST dependencies on XMLDOM

Line 1170: PROCEDURE printElements(doc xmldom.DOMDocument) IS

1166: log_dk_ehol_card_body;
1167:
1168: END validate_ecard_details;
1169:
1170: PROCEDURE printElements(doc xmldom.DOMDocument) IS
1171:
1172: nl xmldom.DOMNodeList;
1173: n xmldom.DOMNode;
1174:

Line 1172: nl xmldom.DOMNodeList;

1168: END validate_ecard_details;
1169:
1170: PROCEDURE printElements(doc xmldom.DOMDocument) IS
1171:
1172: nl xmldom.DOMNodeList;
1173: n xmldom.DOMNode;
1174:
1175: len number;
1176: k number := 0;

Line 1173: n xmldom.DOMNode;

1169:
1170: PROCEDURE printElements(doc xmldom.DOMDocument) IS
1171:
1172: nl xmldom.DOMNodeList;
1173: n xmldom.DOMNode;
1174:
1175: len number;
1176: k number := 0;
1177: t number := 1;

Line 1202: nl := xmldom.getElementsByTagName(doc, '*');

1198: -- k:= 0;
1199:
1200: -- get all elements
1201:
1202: nl := xmldom.getElementsByTagName(doc, '*');
1203:
1204: len := xmldom.getLength(nl);
1205:
1206: -- loop through elements

Line 1204: len := xmldom.getLength(nl);

1200: -- get all elements
1201:
1202: nl := xmldom.getElementsByTagName(doc, '*');
1203:
1204: len := xmldom.getLength(nl);
1205:
1206: -- loop through elements
1207:
1208: FOR i IN 0..len-1 LOOP

Line 1210: n := xmldom.item(nl, i);

1206: -- loop through elements
1207:
1208: FOR i IN 0..len-1 LOOP
1209:
1210: n := xmldom.item(nl, i);
1211:
1212: l_nodename := xmldom.getNodeName(n);
1213: -- get the text node associated with the element node
1214:

Line 1212: l_nodename := xmldom.getNodeName(n);

1208: FOR i IN 0..len-1 LOOP
1209:
1210: n := xmldom.item(nl, i);
1211:
1212: l_nodename := xmldom.getNodeName(n);
1213: -- get the text node associated with the element node
1214:
1215: n := xmldom.getFirstChild(n);
1216:

Line 1215: n := xmldom.getFirstChild(n);

1211:
1212: l_nodename := xmldom.getNodeName(n);
1213: -- get the text node associated with the element node
1214:
1215: n := xmldom.getFirstChild(n);
1216:
1217: IF xmldom.getNodeType(n) = xmldom.TEXT_NODE OR l_nodename = 'Navn' THEN
1218: k:= k+1 ;
1219: l_hol_card(k).tag_name := l_nodename;

Line 1217: IF xmldom.getNodeType(n) = xmldom.TEXT_NODE OR l_nodename = 'Navn' THEN

1213: -- get the text node associated with the element node
1214:
1215: n := xmldom.getFirstChild(n);
1216:
1217: IF xmldom.getNodeType(n) = xmldom.TEXT_NODE OR l_nodename = 'Navn' THEN
1218: k:= k+1 ;
1219: l_hol_card(k).tag_name := l_nodename;
1220: l_hol_card(k).tag_value := xmldom.getNodeValue(n);
1221: END IF;

Line 1220: l_hol_card(k).tag_value := xmldom.getNodeValue(n);

1216:
1217: IF xmldom.getNodeType(n) = xmldom.TEXT_NODE OR l_nodename = 'Navn' THEN
1218: k:= k+1 ;
1219: l_hol_card(k).tag_name := l_nodename;
1220: l_hol_card(k).tag_value := xmldom.getNodeValue(n);
1221: END IF;
1222:
1223: end loop;
1224:

Line 1351: doc xmldom.DOMDocument;

1347: ) IS
1348:
1349: p xmlparser.parser;
1350:
1351: doc xmldom.DOMDocument;
1352:
1353: l_location VARCHAR2(2000);
1354:
1355: c_data_exchange_dir CONSTANT VARCHAR2 (30) := 'PER_DATA_EXCHANGE_DIR';

Line 1420: when xmldom.INDEX_SIZE_ERR then

1416: hr_utility.set_message (800, 'HR_78040_DATA_EXCHANGE_DIR_MIS');
1417: -- Return the message to the ConcMgr (This msg will appear in the log file)
1418: errbuf := hr_utility.get_message;
1419:
1420: when xmldom.INDEX_SIZE_ERR then
1421: raise_application_error(-20120, 'Index Size error');
1422:
1423: when xmldom.DOMSTRING_SIZE_ERR then
1424: raise_application_error(-20120, 'String Size error');

Line 1423: when xmldom.DOMSTRING_SIZE_ERR then

1419:
1420: when xmldom.INDEX_SIZE_ERR then
1421: raise_application_error(-20120, 'Index Size error');
1422:
1423: when xmldom.DOMSTRING_SIZE_ERR then
1424: raise_application_error(-20120, 'String Size error');
1425:
1426: when xmldom.HIERARCHY_REQUEST_ERR then
1427: raise_application_error(-20120, 'Hierarchy request error');

Line 1426: when xmldom.HIERARCHY_REQUEST_ERR then

1422:
1423: when xmldom.DOMSTRING_SIZE_ERR then
1424: raise_application_error(-20120, 'String Size error');
1425:
1426: when xmldom.HIERARCHY_REQUEST_ERR then
1427: raise_application_error(-20120, 'Hierarchy request error');
1428:
1429: when xmldom.WRONG_DOCUMENT_ERR then
1430: raise_application_error(-20120, 'Wrong doc error');

Line 1429: when xmldom.WRONG_DOCUMENT_ERR then

1425:
1426: when xmldom.HIERARCHY_REQUEST_ERR then
1427: raise_application_error(-20120, 'Hierarchy request error');
1428:
1429: when xmldom.WRONG_DOCUMENT_ERR then
1430: raise_application_error(-20120, 'Wrong doc error');
1431:
1432: when xmldom.INVALID_CHARACTER_ERR then
1433: raise_application_error(-20120, 'Invalid Char error');

Line 1432: when xmldom.INVALID_CHARACTER_ERR then

1428:
1429: when xmldom.WRONG_DOCUMENT_ERR then
1430: raise_application_error(-20120, 'Wrong doc error');
1431:
1432: when xmldom.INVALID_CHARACTER_ERR then
1433: raise_application_error(-20120, 'Invalid Char error');
1434:
1435: when xmldom.NO_DATA_ALLOWED_ERR then
1436: raise_application_error(-20120, 'Nod data allowed error');

Line 1435: when xmldom.NO_DATA_ALLOWED_ERR then

1431:
1432: when xmldom.INVALID_CHARACTER_ERR then
1433: raise_application_error(-20120, 'Invalid Char error');
1434:
1435: when xmldom.NO_DATA_ALLOWED_ERR then
1436: raise_application_error(-20120, 'Nod data allowed error');
1437:
1438: when xmldom.NO_MODIFICATION_ALLOWED_ERR then
1439: raise_application_error(-20120, 'No mod allowed error');

Line 1438: when xmldom.NO_MODIFICATION_ALLOWED_ERR then

1434:
1435: when xmldom.NO_DATA_ALLOWED_ERR then
1436: raise_application_error(-20120, 'Nod data allowed error');
1437:
1438: when xmldom.NO_MODIFICATION_ALLOWED_ERR then
1439: raise_application_error(-20120, 'No mod allowed error');
1440:
1441: when xmldom.NOT_FOUND_ERR then
1442: raise_application_error(-20120, 'Not found error');

Line 1441: when xmldom.NOT_FOUND_ERR then

1437:
1438: when xmldom.NO_MODIFICATION_ALLOWED_ERR then
1439: raise_application_error(-20120, 'No mod allowed error');
1440:
1441: when xmldom.NOT_FOUND_ERR then
1442: raise_application_error(-20120, 'Not found error');
1443:
1444: when xmldom.NOT_SUPPORTED_ERR then
1445: raise_application_error(-20120, 'Not supported error');

Line 1444: when xmldom.NOT_SUPPORTED_ERR then

1440:
1441: when xmldom.NOT_FOUND_ERR then
1442: raise_application_error(-20120, 'Not found error');
1443:
1444: when xmldom.NOT_SUPPORTED_ERR then
1445: raise_application_error(-20120, 'Not supported error');
1446:
1447: when xmldom.INUSE_ATTRIBUTE_ERR then
1448: raise_application_error(-20120, 'In use attr error');

Line 1447: when xmldom.INUSE_ATTRIBUTE_ERR then

1443:
1444: when xmldom.NOT_SUPPORTED_ERR then
1445: raise_application_error(-20120, 'Not supported error');
1446:
1447: when xmldom.INUSE_ATTRIBUTE_ERR then
1448: raise_application_error(-20120, 'In use attr error');
1449:
1450: WHEN others then
1451: fnd_file.put_line(fnd_file.log,'exception: '||SQLERRM);