CINXE.COM

Element - dcpNotAffect/DischargePoints/UWWTDArt15

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/> <link rel="stylesheet" type="text/css" href="https://www.eionet.europa.eu/styles/eionet2007/print.css" media="print" /> <link rel="stylesheet" type="text/css" href="https://www.eionet.europa.eu/styles/eionet2007/handheld.css" media="handheld" /> <link rel="stylesheet" type="text/css" href="https://www.eionet.europa.eu/styles/eionet2007/screen.css" media="screen" /> <link rel="stylesheet" type="text/css" href="/css/eionet2007.css" media="screen"/> <link rel="stylesheet" type="text/css" href="/css/print.css" media="print" /> <link rel="stylesheet" type="text/css" href="/css/smoothness/jquery-ui-1.8.16.custom.css" /> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/> <script type="text/javascript" src="/pageops.js"></script> <script type="text/javascript" src="/mark_special_links.js"></script> <script type="text/javascript" src="/scripts/jquery-1.6.2.min.js"></script> <script type="text/javascript" src="/scripts/jquery-ui-1.8.16.custom.min.js"></script> <script type="text/javascript" src="/script.js"></script> <script type="text/javascript" src="/helpPopup.js"></script> <title>Element - dcpNotAffect/DischargePoints/UWWTDArt15</title> <script type="text/javascript" src="/querystring.js"></script> <script type="text/javascript" src="/modal_dialog.js"></script> <script type="text/javascript"> // <![CDATA[ var pickMode=""; function statusSelectionChanged(changedForm) { if (document.getElementById("reg_status_select").value.toLowerCase() == 'superseded') { document.getElementById("successor").style.display = 'inline'; } else { document.getElementById("successor").style.display = 'none'; } form_changed(changedForm); } function forceAttrMaxLen(){ var i = 0; var elms = document.forms["form1"].elements; for (i=0; elms!=null && i<elms.length; i++){ var elmName = elms[i].name; if (startsWith(elmName, "attr_")){ if (elms[i].value.length > 500){ alert("Maximum length of attribute values for data element definitions is 500!"); return; } } } } function checkIn(){ submitCheckIn(); } function switchType(){ document.forms["form1"].elements["switch_type"].value = "true"; document.forms["form1"].elements["mode"].value = "edit"; document.forms["form1"].submit(); } function submitCheckIn(){ document.forms["form1"].elements["check_in"].value = "true"; document.forms["form1"].elements["mode"].value = "edit"; document.forms["form1"].submit(); } function goTo(mode, id){ if (mode == "edit"){ document.location.assign("/dataelements/" + id + "/edit"); } else if (mode=="checkout"){ document.location.assign("/dataelements/" + id + "/checkout"); } else if (mode=="newversion"){ document.location.assign("/dataelements/" + id + "/newversion"); } else if (mode=="view"){ document.location.assign("/dataelements/" + id); } } function submitForm(mode){ // detect element type, make sure it has been selected var elmTypeSelectedValue = ""; var typeRadioButtons = document.forms["form1"].elements["type"]; if (typeRadioButtons.length==undefined){ elmTypeSelectedValue = typeRadioButtons.value; } else{ for (var i=0; i<typeRadioButtons.length; i++){ if (typeRadioButtons[i].checked){ elmTypeSelectedValue = typeRadioButtons[i].value; } } } if (elmTypeSelectedValue==null || elmTypeSelectedValue==""){ alert('Element type not specified!'); return false; } if (mode == "delete"){ var b = confirm("Are you sure you want to delete this element? Click OK, if yes. Otherwise click Cancel."); if (b==false) return; document.forms["form1"].elements["mode"].value = "delete"; document.forms["form1"].submit(); return; } // if not delete mode, do validation of inputs if (mode != "delete"){ var isCommon = false; var strVocabularyId = 'null'; var strType = 'CH1'; forceAttrMaxLen(); if (!checkObligations()){ alert("You have not specified one of the mandatory attributes!"); return false; } if (mode != "add") { if (strType == 'CH3' && strVocabularyId == 'null') { alert("Vocabulary is not selected."); return false; } if (isCommon) { var regStatus = document.getElementById("reg_status_select").value; var successorId = document.forms["form1"].elements["successor_id"].value; if (regStatus.toLowerCase() === 'superseded' && successorId === "null") { alert("A superseded element must be linked to its successor. You must specify the link."); return false; } } } if (hasWhiteSpace("idfier")){ alert("Identifier cannot contain any white space!"); return false; } if (!validForXMLTag(document.forms["form1"].elements["idfier"].value, isCommon)){ alert("Identifier not valid for usage as an XML tag! " + "In the first character only underscore or latin characters are allowed! " + "In the rest of characters only underscore or hyphen or dot or 0-9 or latin characters are allowed!" + "Only common elements may have namespace prefix."); return false; } } //slctAllValues(); if (mode=="editclose"){ mode = "edit"; document.forms["form1"].elements["saveclose"].value = "true"; } document.forms["form1"].elements["mode"].value = mode; document.forms["form1"].submit(); return true; } function delDialogReturn(){ var v = dialogWin.returnValue; if (v==null || v=="" || v=="cancel") return; document.forms["form1"].elements["upd_version"].value = v; deleteReady(); } function deleteReady(){ document.forms["form1"].elements["mode"].value = "delete"; document.forms["form1"].submit(); } function checkObligations(){ var o = document.forms["form1"].delem_name; if (o!=null && o.value.length == 0) return false; o = document.forms["form1"].idfier; if (o!=null && o.value.length == 0) return false; if ($("#form1 .vocabularyAttributeMandatoryValidationError").length) { return false; } var elems = document.forms["form1"].elements; for (var i=0; elems!=null && i<elems.length; i++){ var elem = elems[i]; var elemName = elem.name; var elemValue = elem.value; if (startsWith(elemName, "attr_")){ var o = document.forms["form1"].elements[i+1]; if (o == null) return false; if (!startsWith(o.name, "oblig_")) continue; if (o.value == "M" && (elemValue==null || elemValue.length==0)){ return false; } } } return true; } function hasWhiteSpace(input_name){ var elems = document.forms["form1"].elements; if (elems == null) return false; for (var i=0; i<elems.length; i++){ var elem = elems[i]; if (elem.name == input_name){ var val = elem.value; if (val.indexOf(" ") != -1) return true; } } return false; } function startsWith(str, pattern){ var i = str.indexOf(pattern,0); if (i!=-1 && i==0) return true; else return false; } function endsWith(str, pattern){ var i = str.indexOf(pattern, str.length-pattern.length); if (i!=-1) return true; else return false; } function fixType(radioButton){ if (!radioButton){ return; } var strType = radioButton.value; if (strType == null || strType.length==0){ return; } var datatypeElemAttrID = 25 var requestQS = new Querystring(); var arr = new Array(); arr[0] = strType; requestQS.setValues_("type", arr); slctAllValues(); var s = visibleInputsToQueryString("form1"); var inputsQS = new Querystring(s); inputsQS.remove("typeSelect"); requestQS.removeAll(inputsQS); // The reason we want to exclude "reg_status" is that IE will change occurance // of "&reg_status" substring to "庐_status". So we will add reg_status explicitly // right to the start of the query string, so that in the final URL it appears right after the question mark. requestQS.remove("reg_status"); requestQS.remove("mode"); inputsQS.remove("reg_status"); inputsQS.remove("mode"); //remove dataelem if CH3. Actually var datatypeElemID = "attr_25"; var eType = strType if (eType == "CH3") { inputsQS.remove(datatypeElemID); } var newLocation = "/dataelements/add/?"; if (document.forms["form1"].reg_status){ newLocation = newLocation + "reg_status=" + escape(document.forms["form1"].reg_status.value) + "&"; } newLocation = newLocation + requestQS.toString() + "&" + inputsQS.toString(); window.location.assign(newLocation); } function onBodyLoad(){ var formName = "form1"; var inputName; var popValues; } function changeDatatype(){ var elmDataType = document.forms["form1"].attr_25.value; if (elmDataType == null || elmDataType.length==0) return; var arr = new Array(); arr[0] = elmDataType; var requestQS = new Querystring(); requestQS.setValues_("elm_datatype", arr); requestQS.remove("attr_25"); slctAllValues(); var s = visibleInputsToQueryString("form1"); var inputsQS = new Querystring(s); inputsQS.remove("attr_25"); requestQS.removeAll(inputsQS); // The reason we want to exclude "reg_status" is that IE will change occurance // of "&reg_status" substring to "庐_status". So we will add reg_status explicitly // right to the start of the query string, so that in the final URL it appears right after the question mark. requestQS.remove("reg_status"); requestQS.remove("mode"); inputsQS.remove("reg_status"); inputsQS.remove("mode"); var newLocation = "/dataelements/103200/view?"; if (document.forms["form1"].reg_status){ newLocation = newLocation + "reg_status=" + escape(document.forms["form1"].reg_status.value) + "&"; } newLocation = newLocation + requestQS.toString() + "&" + inputsQS.toString(); window.location.assign(newLocation); } function slctAllValues(){ var elems = document.forms["form1"].elements; if (elems == null) return true; for (var j=0; j<elems.length; j++){ var elem = elems[j]; var elemName = elem.name; if (startsWith(elemName, "attr_mult_")){ var slct = document.forms["form1"].elements[elemName]; if (slct.options && slct.length){ if (slct.length==1 && slct.options[0].value=="" && slct.options[0].text==""){ slct.remove(0); slct.length = 0; } for (var i=0; i<slct.length; i++){ slct.options[i].selected = "true"; } } } } } function copyElem(){ var isCommon = false; if (hasWhiteSpace("idfier")){ alert("Identifier cannot contain any white space!"); return; } if (!validForXMLTag(document.forms["form1"].elements["idfier"].value, isCommon)) { alert("Identifier not valid for usage as an XML tag! " + "In the first character only underscore or latin characters are allowed! " + "In the rest of characters only underscore or hyphen or dot or 0-9 or latin characters are allowed!"); return; } var ds = document.forms["form1"].elements["ds_id"].value; if (ds==null || ds==""){ alert('Dataset not specified!'); return; } var tbl = document.forms["form1"].elements["table_id"].value; if (tbl==null || tbl==""){ alert('Table not specified!'); return; } var url="/search.jsp?ctx=popup"; wAdd = window.open(url,"Search","height=800,width=1200,status=yes,toolbar=no,scrollbars=yes,resizable=yes,menubar=no,location=no"); if (window.focus){ wAdd.focus(); } } function pickElemForLink(id, name){ if (pickMode=="link") { document.forms["form1"].elements["successor_id"].value = id; document.getElementById("successorName").href = "/dataelements/"+id; document.getElementById("successorName").innerHTML = name; document.getElementById("successorName").onclick = "return true"; return true; } } function pickElem(id) { document.forms["form1"].elements["copy_elem_id"].value=id; document.forms["form1"].elements["mode"].value = "copy"; document.forms["form1"].submit(); return true; } function validForXMLTag(str, isCommon){ var colonCount = 0; // if empty string not allowed for XML tag if (str==null || str.length==0){ return false; } // check the first character (only underscore or A-Z or a-z allowed) var ch = str.charCodeAt(0); if (!(ch==95 || (ch>=65 && ch<=90) || (ch>=97 && ch<=122))){ return false; } // check the rest of characters ((only underscore or hyphen or dot or 0-9 or A-Z or a-z allowed)) if (str.length==1) return true; for (var i=1; i<str.length; i++){ ch = str.charCodeAt(i); if (ch == 58) { colonCount = colonCount + 1; } //only common elements may have colon if (!((ch == 58 && isCommon) || ch==95 || ch==45 || ch==46 || (ch>=48 && ch<=57) || (ch>=65 && ch<=90) || (ch>=97 && ch<=122))){ return false; } if (colonCount > 1) { return false; } } //xml element name can contain only one colon: return true; } // ]]> </script> </head> <body onload="onBodyLoad()"> <div id="container"> <div id="toolribbon"> <div id="lefttools"> <a id="eealink" href="https://www.eea.europa.eu/">EEA</a> <a id="ewlink" href="https://ew.eea.europa.eu/">EnviroWindows</a> </div> <div id="righttools"> <a id="loginlink" href="https://sso.eionet.europa.eu/login?service=http%3A%2F%2Fdd.eionet.europa.eu%2Flogin" title="Login">Login</a> <a id="printlink" title="Print this page" href="javascript:this.print();"><span>Print</span></a> <a id="fullscreenlink" href="javascript:toggleFullScreenMode()" title="Switch to/from full screen mode"><span>Switch to/from full screen mode</span></a> <a id="eionetlink" title="Go to Eionet portal" href="https://www.eionet.europa.eu/"><span>Eionet portal</span></a> </div> </div> <!-- toolribbon --> <div id="pagehead"> <a href="/"><img src="/images/eea-print-logo.gif" alt="Logo" id="logo" /></a> <div id="networktitle">Eionet</div> <div id="sitetitle">Data Dictionary</div> <div id="sitetagline">This service is part of Reportnet</div> </div> <!-- pagehead --> <div id="menuribbon"> </div> <div class="breadcrumbtrail"> <div class="breadcrumbhead">You are here:</div> <div class="breadcrumbitem eionetaccronym"><a href="https://www.eionet.europa.eu">Eionet</a></div> <div class="breadcrumbitem"><a href="/">Data Dictionary</a></div> <div class="breadcrumbitemlast">Data element</div> <div class="breadcrumbtail"> </div> </div> <div id="leftcolumn" class="localnav"> <ul> <li ><a href="/documentation">Help and documentation</a></li> <li ><a href="/datasets.jsp">Datasets</a></li> <li ><a href="/searchtables">Tables</a></li> <li class="current"><a href="/searchelements">Data elements</a></li> <li ><a href="/schemasets/browse/">Schemas</a></li> <li ><a href="/vocabularies">Vocabularies</a></li> <li ><a href="/services/list">Services</a></li> <li ><a href="/namespaces">Namespaces</a></li> </ul> </div> <div id="workarea"> <h1>View element definition</h1> <div id="quickbar"><ul> <li class="quickLink"><a href="#values">Allowable values</a></li> </ul></div> <form id="form1" method="post" action="/dataelements"> <div style="display:none"> <input id="txtElemId" type="hidden" name="delem_id" value="103200"/> <input id="txtVocabularyId" type="hidden" name="vocabulary_id" value="null"/> </div> <!-- main table body --> <!-- quick links --> <!-- type --> <h2> DATA ELEMENT WITH FIXED VALUES <a class="helpButton" href="/help.jsp?screen=element&amp;area=type"></a> </h2> <!-- start dotted --> <div id="outerframe"> <!-- attributes --> <table class="datatable results"> <!-- Identifier --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Identifier <a class="helpButton" href="/help.jsp?screen=dataset&amp;area=identifier"></a> </th> <td class="simple_attr_value"> <b>dcpNotAffect</b> <input type="hidden" name="idfier" value="dcpNotAffect"/> </td> </tr> <!-- short name --> <tr id="short_name_row" class="even"> <th scope="row" class="scope-row short_name"> Short name <a class="helpButton" href="/help.jsp?screen=dataset&amp;area=short_name"></a> </th> <td class="short_name_value"> dcpNotAffect <input type="hidden" name="delem_name" value="dcpNotAffect"/> </td> </tr> <!-- dataset & table part, relevant for non-common elements only --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Dataset <a class="helpButton" href="/help.jsp?screen=table&amp;area=dataset"></a> </th> <td class="simple_attr_value"> <em> <a href="/datasets/3539"> <b>UWWTDArt15</b> </a> </em> <input type="hidden" name="ds_id" value="3539"/> </td> </tr> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Table <a class="helpButton" href="/help.jsp?screen=element&amp;area=table"></a> </th> <td class="simple_attr_value"> <em> <a href="/tables/11932"> DischargePoints </a> </em> <input type="hidden" name="table_id" value="11932"/> </td> </tr> <!-- RegistrationStatus, relevant for common elements only --> <!-- Reference URL --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Reference URL <a class="helpButton" href="/help.jsp?screen=dataset&amp;area=refurl"></a> </th> <td class="simple_attr_value"> <small><a href="http://dd.eionet.europa.eu/datasets/latest/UWWTDArt15/tables/DischargePoints/elements/dcpNotAffect">http://dd.eionet.europa.eu/datasets/latest/UWWTDArt15/tables/DischargePoints/elements/dcpNotAffect</a></small> </td> </tr> <!-- dynamic attributes --> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Name <a class="helpButton" href="/help.jsp?attrid=1&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> dcpNotAffect <input type="hidden" name="oblig_1" value="M"/> </td> <!-- end dynamic attribute value display --> </tr> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Definition <a class="helpButton" href="/help.jsp?attrid=4&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> Do comprehensive studies indicate that the discharge does not adversely affect the environment? <input type="hidden" name="oblig_4" value="O"/> </td> <!-- end dynamic attribute value display --> </tr> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Methodology for obtaining data <a class="helpButton" href="/help.jsp?attrid=17&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> This value is relevant to Less sensitive areas. <br/><br/>A valid alternative to the default boolean values &#039;false&#039; and &#039;true&#039; are values &#039;0&#039; and &#039;1&#039;, respectively. <input type="hidden" name="oblig_17" value="O"/> </td> <!-- end dynamic attribute value display --> </tr> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Datatype <a class="helpButton" href="/help.jsp?attrid=25&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> boolean <input type="hidden" name="oblig_25" value="M"/> </td> <!-- end dynamic attribute value display --> </tr> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Public or Internal <a class="helpButton" href="/help.jsp?attrid=28&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> undefined <input type="hidden" name="oblig_28" value="O"/> </td> <!-- end dynamic attribute value display --> </tr> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Responsible <a class="helpButton" href="/help.jsp?attrid=62&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> <input type="hidden" name="oblig_62" value="M"/> </td> <!-- end dynamic attribute value display --> </tr> <!-- end dynamic attributes --> <!-- version (or the so-called CheckInNo), relevant for common elements only --> <!-- add, save, check-in, undo check-out buttons --> </table> <!-- end of attributes --> <!-- allowable/suggested values --> <!-- title & link part --> <h2> Allowable values<a id="values"></a> </h2> <!-- table part --> <table class="datatable results"> <col style="width:20%"/> <col style="width:40%"/> <col style="width:40%"/> <thead> <tr> <th>Code</th> <th>Label</th> <th>Definition</th> </tr> </thead> <tr> <td> <a href="/fixedvalues/elem/103200/view/965240"> false </a> </td> <td title="Auto-created by DD"> Auto-created by DD </td> <td title="Value auto-created by DD"> Value auto-created by DD </td> </tr> <tr> <td> <a href="/fixedvalues/elem/103200/view/965241"> true </a> </td> <td title="Auto-created by DD"> Auto-created by DD </td> <td title="Value auto-created by DD"> Value auto-created by DD </td> </tr> </table> <!-- foreign key relations, relevant for non-common elements only --> <!-- referring tables , relevant for common elements only --> <!-- Inference Rules --> <!-- end Inference Rules --> <!-- end dotted --> </div> <!-- end main table body --> <!-- end main table --> <div style="display:none"> <input type="hidden" name="mode" value="view"/> <input type="hidden" name="check_in" value="false"/> <input type="hidden" name="switch_type" value="false"/> <input type="hidden" name="copy_elem_id" value=""/> <input type="hidden" name="changed" value="0"/> <input type="hidden" name="saveclose" value="false"/> <input type="hidden" name="remove_values" value="false"/> <input type="hidden" name="datatype_conversion" value=""/> <input type="hidden" name="type" value="CH1"/> <input type="hidden" name="dst_namespace_id" value="802"/> <input type="hidden" name="tbl_namespace_id" value="823"/> <input type="hidden" name="submitter_url" value="data_element.jsp"/> </div> </form> <script type="text/javascript"> // <![CDATA[ (function($) { $(document).ready(function() { $("#selectVocabularyLnk").live("click", function(event){ var elemId = document.getElementById("txtElemId").value; $('#searchVocabulariesDiv').dialog('open'); $('#vocabularySearchForm').find("input[id='txtDElemId']").attr("value", elemId); return false; }); $("#searchVocabulariesDiv").dialog({ autoOpen: false, width: 600, modal: true }); $("#cancelBtn").click(function(){ $("#searchVocabulariesDiv").dialog("close"); return false; }); // Function for opening popups openPopup = function(divId) { $(divId).dialog('open'); return false; } // Function for closing popups closePopup = function(divId) { $(divId).dialog("close"); return false; } }); })(jQuery); // ]]> </script> <div id="searchVocabulariesDiv" title="Search vocabularies"> <form id="vocabularySearchForm" method="post" action="/bindvocabulary" style="margin-top:1em"> <input type="hidden" id ="txtDElemId" name = "elementId"/> <table class="datatable" style="width:100%"> <colgroup> <col style="width:10em;"/> <col style="width:30em;"/> </colgroup> <tr> <th scope="row" class="scope-row simple_attr_title" title="Vocabulary concept identifier or label "> <label for="filterText"><span style="white-space:nowrap;">Vocabulary</span></label> </th> <td class="simple_attr_value"> <input class="smalltext" size="50" name="vocabularyFilter.text" id="filterText" placeholder="Search by Vocabulary identifier or label"/> </td> </tr> <tr> <td></td> <td> <!--input type="button" id="searchBtn" name="search" value="Search" class="mediumbuttonb"/--> <input type="submit" id="submitBtn" name="search" value="Search" class="mediumbuttonb"/> <input type="button" id="cancelBtn" name="cancelSearch" value="Cancel" class="mediumbuttonb"/> </td> </tr> </table> </form> </div> </div> <!-- workarea --> </div> <!-- container --> <div id="pagefoot"> <p> <a href="/documentation/doc1">Disclaimer</a> | Copyright: <a rel="license" href="https://creativecommons.org/licenses/by/2.5/dk/deed.en_GB" title="Creative Commons Attribution License"> <img alt="Creative Commons Attribution License" src="https://i.creativecommons.org/l/by/2.5/dk/80x15.png" /></a> | <a href="mailto:helpdesk@eionet.europa.eu?subject=Feedback from the Data Dictionary website">Feedback</a> </p> <p> <a href="http://www.eea.europa.eu">European Environment Agency</a> <br/>Kgs. Nytorv 6, DK-1050 Copenhagen K, Denmark </p> </div> <script type="text/javascript"> var contextPath = ""; </script> <script type="text/javascript" src="/popbox.js"></script> <script type="text/javascript"> // <![CDATA[ var popclickpop = { 'onclick' : function() { Pop(this,-50,'PopBoxImageLarge'); }, 'pbShowPopBar' : false, 'pbShowPopImage' : false, 'pbShowPopText' : false, 'pbShowRevertImage': true, 'pbShowPopCaption' : true }; PopRegisterClass('poponmouseclick', popclickpop); popBoxShowPopBar = false; // ]]> </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10