diff --git a/src/de/superx/common/Maske.java b/src/de/superx/common/Maske.java index dab2c2c..d224e5e 100644 --- a/src/de/superx/common/Maske.java +++ b/src/de/superx/common/Maske.java @@ -2585,79 +2585,75 @@ public class Maske extends NamedIdObject implements Serializable { } public StringBuffer getCSV(String mandantenID) throws IOException { - String fld_delim1 = ""; - String fld_delim2 = ";"; - String row_delim1 = ""; - String row_delim2 = "\n";// we only user unix newline, even under DOS - String outFormat = "txt"; - // File f = File.createTempFile("tmp", ".csv"); - // FileWriter fw = new FileWriter(f); - // BufferedWriter bfw = new BufferedWriter(fw); - StringBuffer result = new StringBuffer(); - StringBuffer line = new StringBuffer(""); - int cols = this.getResult_el().getColumnCount(); - - // header - // for (int i = 0; i < cols; i++) { - // String colname=this.getResult_el().getResultSet().getColumnName(i); - // line.append(colname+fld_delim2); - // } - List headerlist = getHeaderCaptionList(mandantenID, true); - for (Iterator it = headerlist.iterator(); it.hasNext();) { - String headername = it.next() + fld_delim2; - headername = headername.replaceAll(" ", " "); - headername = headername.replaceAll(" ", " "); - line.append(headername); - } - line.append("\n"); - - // bfw.write(line.toString()); - result.append(line); - // data - Iterator it = this.getResult_el().getResultSet().iterator(); - while (it.hasNext()) { - SxResultRow row = (SxResultRow) it.next(); - line.setLength(0); - for (int i = 1; i <= cols; i++) { - Object o = row.get(i - 1); - - // aus SxTransformer.printResult - String f_wert = SxDBUtils.field_value(o); - // MB spezifisch statt . ein , als Decimaltrenner - if (o instanceof Float || o instanceof Double || o instanceof BigDecimal) - f_wert = o.toString().replace('.', ','); - // MB Spezifisch Ende - - if (outFormat.equals("xml") - && (f_wert.indexOf("&") > -1 || f_wert.indexOf("<") > -1 || f_wert.indexOf(">") > -1)) - f_wert = ""; - // wenn der Feldwert zufällig das Zeichen - // "\" enthält, wird es mit "\" maskiert - if (outFormat.equals("txt") && f_wert != null && (f_wert.indexOf("\\n") > -1)) { - f_wert = de.memtext.util.StringUtils.replace(f_wert, "\\n", "\\\\n"); - } - // wenn der Feldwert zufällig das Trennzeichen enthält, wird es - // mit "\" maskiert - if (outFormat.equals("txt") && f_wert != null && (f_wert.indexOf(fld_delim2) > -1)) - f_wert = de.memtext.util.StringUtils.replace(f_wert, fld_delim2, "\\" + fld_delim2); - if (i < cols) - line.append(fld_delim1 + f_wert + fld_delim2); - else { - line.append(fld_delim1 + f_wert + fld_delim2); - line.append(row_delim2); - } - // aus SxTransformer.printResult - - } - // bfw.write(line.toString()); - result.append(line); - } - - // bfw.close(); - // fw.close(); - // return f; - return result; - } + String fld_delim1 = ""; + String fld_delim2 = "^"; + if (SxPools.get(mandantenID).getRepository().containsKey("K_CSV_Excel_ISO")&&SxPools.get(mandantenID).getRepository().get("K_CSV_Excel_ISO").toString().equals("1")) + { + fld_delim2 = ";"; + } + String row_delim1 = ""; + String row_delim2 = "\n";// we only user unix newline, even under DOS + String outFormat = "txt"; + StringBuffer result = new StringBuffer(); + StringBuffer line = new StringBuffer(""); + int cols = this.getResult_el().getColumnCount(); + + // header + List headerlist = getHeaderCaptionList(mandantenID, true); + for (Iterator it = headerlist.iterator(); it.hasNext();) { + String headername = it.next() + fld_delim2; + headername = headername.replaceAll(" ", " "); + headername = headername.replaceAll(" ", " "); + line.append(headername); + } + line.append("\n"); + + result.append(line); + // data + Iterator it = this.getResult_el().getResultSet().iterator(); + while (it.hasNext()) { + SxResultRow row = (SxResultRow) it.next(); + line.setLength(0); + for (int i = 1; i <= cols; i++) { + Object o = row.get(i - 1); + + // aus SxTransformer.printResult + String f_wert = SxDBUtils.field_value(o); + // MB spezifisch statt . ein , als Decimaltrenner + if (o instanceof Float || o instanceof Double || o instanceof BigDecimal) f_wert = o.toString().replace('.', ','); + // MB Spezifisch Ende + + if (outFormat.equals("xml") && (f_wert.indexOf("&") > -1 || f_wert.indexOf("<") > -1 || f_wert.indexOf(">") > -1)) f_wert = ""; + //wenn der Feldwert einen Zeilenumbruch enthält wird der Test in "" gesetzt -> für CSV Import + if (outFormat.equals("txt") && f_wert != null && (f_wert.indexOf("\n") > -1)) { + f_wert = "\""+f_wert+"\""; + } + // wenn der Feldwert zufällig das Zeichen + // "\" enthält, wird es mit "\" maskiert + if (outFormat.equals("txt") && f_wert != null && (f_wert.indexOf("\n") > -1)) { + f_wert = "\""+f_wert+"\""; + } + if (outFormat.equals("txt") && f_wert != null && (f_wert.indexOf("\\n") > -1)) { + f_wert = de.memtext.util.StringUtils.replace(f_wert, "\\n", "\\\\n"); + } + // wenn der Feldwert zufällig das Trennzeichen enthält, wird es + // mit "\" maskiert + if (outFormat.equals("txt") && f_wert != null && (f_wert.indexOf(fld_delim2) > -1)) + f_wert = de.memtext.util.StringUtils.replace(f_wert, fld_delim2, "\\" + fld_delim2); + if (i < cols) + line.append(fld_delim1 + f_wert + fld_delim2); + else { + line.append(fld_delim1 + f_wert + fld_delim2); + line.append(row_delim2); + } + // aus SxTransformer.printResult + + } + result.append(line); + } + + return result; + } public void updateDynamicSichten(Field f, SxUser user) throws SQLException, DBServletException, KeyParentEqualException, CloneNotSupportedException, NoMainEntryException, TemplateException, IOException { diff --git a/src/de/superx/servlet/SuperXmlTabelle.java b/src/de/superx/servlet/SuperXmlTabelle.java index 3304fd3..36f2594 100644 --- a/src/de/superx/servlet/SuperXmlTabelle.java +++ b/src/de/superx/servlet/SuperXmlTabelle.java @@ -1069,14 +1069,29 @@ public class SuperXmlTabelle extends AbstractSuperXServlet { } private void csvExport() throws IOException { - /* Spezieller ISO Export für MS Excel*/ - StringBuffer csv = maske.getCSV(getMandantenID()); - String outp = new String(csv.toString().getBytes("iso-8859-1")); - response.setHeader("Content-disposition", "attachment; filename=" + FileUtils.removeProblemChars(maske.getName()) + ".csv"); - response.setHeader("Cache-Control", "expires=0"); - response.setHeader("ContentType", "text/plain"); //; charset=ISO-8859-1 - sendBackIso(csv.toString(), "text/csv; charset=ISO-8859-1"); + /* Spezieller ISO Export für MS Excel für FH DO*/ + StringBuffer csv = maske.getCSV(getMandantenID()); + String outp; + if (SxPools.get(getMandantenID()).getRepository().containsKey("K_CSV_Excel_ISO")&&SxPools.get(getMandantenID()).getRepository().get("K_CSV_Excel_ISO").toString().equals("1")) + { + outp = new String(csv.toString().getBytes("iso-8859-1")); + response.setHeader("Content-disposition", "attachment; filename=" + FileUtils.removeProblemChars(maske.getName()) + ".csv"); + response.setHeader("Cache-Control", "expires=0"); + response.setHeader("ContentType", "text/plain"); //; charset=ISO-8859-1 + sendBackIso(csv.toString(), "text/csv; charset=ISO-8859-1"); + } + else + { + //Format bis 2024.06: + + response.setHeader("Content-disposition", "attachment; filename=" + FileUtils.removeProblemChars(maske.getName()) + ".csv"); + response.setHeader("Cache-Control", "expires=0"); + + sendBack(csv.toString(), "text/csv"); + + } + } void sendBackIso(String txt, String contenttype) throws IOException { diff --git a/src/de/superx/servlet/Themenbaum.java b/src/de/superx/servlet/Themenbaum.java index 68d5483..59225cc 100644 --- a/src/de/superx/servlet/Themenbaum.java +++ b/src/de/superx/servlet/Themenbaum.java @@ -62,7 +62,12 @@ public class Themenbaum implements ThemenbaumI, Serializable { this.login_name = login_name; this.mandantenID = mandantenID; this.isAdmin = isAdmin; - try { + + if (SxPools.get(mandantenID).getRepository().containsKey("K_aufklappbarer Themenbaum")&&SxPools.get(mandantenID).getRepository().get("K_aufklappbarer Themenbaum").toString().equals("1")) + { + menu.setAufklappbarerThemenbaum(true); + } + try { // DQ 5.4.2007: transform-Methode war hier, ist ausgelagert nach // toHtml // wg. XML-Ausgabe des Themenbaums @@ -249,7 +254,7 @@ public class Themenbaum implements ThemenbaumI, Serializable { private class Menu extends DefaultTreeModel { private static final long serialVersionUID = 1L; - + private boolean aufklappbarerThemenbaum=false; public Menu(MenuItemNode root) { super(root); //printout(); @@ -268,6 +273,12 @@ public class Themenbaum implements ThemenbaumI, Serializable { MenuItemNode n = getNode(tid); return getMenupath(n); } + public boolean isAufklappbarerThemenbaum() { + return aufklappbarerThemenbaum; + } + public void setAufklappbarerThemenbaum(boolean aufklappbarerThemenbaum) { + this.aufklappbarerThemenbaum = aufklappbarerThemenbaum; + } private String getMenupath(MenuItemNode n) { StringBuffer result = new StringBuffer("\n\n"); @@ -324,6 +335,7 @@ public class Themenbaum implements ThemenbaumI, Serializable { boolean showNavigation = !navigationElement.isEmpty(); StringBuffer result = new StringBuffer( "\n\n"); result.append(Maske.addGeneralInfo()); diff --git a/superx-build/build.xml b/superx-build/build.xml index e46882b..871f2d4 100644 --- a/superx-build/build.xml +++ b/superx-build/build.xml @@ -33,7 +33,7 @@ classname="org.codehaus.groovy.ant.Groovy" classpathref="classpath"/> - + diff --git a/superx/WEB-INF/conf/#Untitled-1# b/superx/WEB-INF/conf/#Untitled-1# new file mode 100644 index 0000000..cb4135c --- /dev/null +++ b/superx/WEB-INF/conf/#Untitled-1# @@ -0,0 +1,45 @@ +git add src/de/superx/common/Maske.java +git add src/de/superx/servlet/SuperXmlTabelle.java +git add src/de/superx/servlet/Themenbaum.java +git add superx-build/build.xml +git add superx/WEB-INF/conf/edustore/db/install/conf/kern.xml +git add superx/WEB-INF/conf/edustore/db/install/masken/71820_felderinfo.unl +git add superx/WEB-INF/conf/edustore/db/install/masken/71820_maskeninfo.unl +git add superx/WEB-INF/conf/edustore/db/install/schluesseltabellen/kern_feste_konstanten_fuellen.sql +git add superx/WEB-INF/conf/edustore/db/install/upgrade/kern_env_upgrade.x +git add superx/WEB-INF/conf/edustore/db/install/upgrade/kern_pre_upgrade_pg.sql +git add superx/WEB-INF/conf/edustore/db/install/upgrade/kernmodul_upgrade_man.sql +git add superx/WEB-INF/conf/obsoletfiles.txt + gelöscht: superx/WEB-INF/lib/superx5.0.jar +git add superx/edit/kern/webapp_manager.jsp +git add superx/images/table.svg +git add superx/xml/pageComponents_html.xsl + +Unversionierte Dateien: + (benutzen Sie "git add ...", um die Änderungen zum Commit vorzumerken) + superx/WEB-INF/conf/edustore/db/install/conf/his1/dbconv/sch.eduetl/k_astat_faechergruppe.tab + superx/WEB-INF/conf/edustore/db/install/conf/kern.html + superx/WEB-INF/conf/edustore/db/install/masken/71840_felderinfo.unl + superx/WEB-INF/conf/edustore/db/install/masken/71840_maske_system_bez.unl + superx/WEB-INF/conf/edustore/db/install/masken/71840_masken_felder_bez.unl + superx/WEB-INF/conf/edustore/db/install/masken/71840_maskeninfo.unl + superx/WEB-INF/conf/edustore/db/install/masken/71840_sachgeb_maske_bez.unl + superx/WEB-INF/conf/edustore/db/install/masken/71860_felderinfo.unl + superx/WEB-INF/conf/edustore/db/install/masken/71860_maske_system_bez.unl + superx/WEB-INF/conf/edustore/db/install/masken/71860_masken_felder_bez.unl + superx/WEB-INF/conf/edustore/db/install/masken/71860_maskeninfo.unl + superx/WEB-INF/conf/edustore/db/install/masken/71860_sachgeb_maske_bez.unl + superx/WEB-INF/conf/edustore/db/install/masken/71880_felderinfo.unl + superx/WEB-INF/conf/edustore/db/install/masken/71880_maske_system_bez.unl + superx/WEB-INF/conf/edustore/db/install/masken/71880_masken_felder_bez.unl + superx/WEB-INF/conf/edustore/db/install/masken/71880_maskeninfo.unl + superx/WEB-INF/conf/edustore/db/install/masken/71880_sachgeb_maske_bez.unl + superx/WEB-INF/conf/edustore/db/install/schluesseltabellen/release_unloads/k_astat_abschl_grp.unl + superx/WEB-INF/lib/superx5.1.jar + superx/WEB-INF/patch/patch_archive/patch_2024-06-10_bash_var.sh + superx/WEB-INF/patch/patch_archive/patch_2024-06-10_readme.htm + superx/WEB-INF/patch/xml/patch_2024-06-10.xml + superx/edit/kern/systeminfo_view.jsp + superx/style/LICENSE_bulma_tooltip_1.2.0.txt + superx/style/bulma-tooltip.min.css + diff --git a/superx/WEB-INF/conf/edustore/db/install/conf/his1/dbconv/sch.eduetl/k_astat_faechergruppe.tab b/superx/WEB-INF/conf/edustore/db/install/conf/his1/dbconv/sch.eduetl/k_astat_faechergruppe.tab new file mode 100644 index 0000000..6e1b6fe --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/conf/his1/dbconv/sch.eduetl/k_astat_faechergruppe.tab @@ -0,0 +1,10 @@ +{### k_astat_faechergruppe - automatisch generiert #########} +create table k_astat_faechergruppe( + schluessel NVARCHAR(255) not null, +name NVARCHAR(255) +); + +comment on column k_astat_faechergruppe.schluessel is 'Schlüssel'; + +comment on column k_astat_faechergruppe.name is 'Name'; + \ No newline at end of file diff --git a/superx/WEB-INF/conf/edustore/db/install/conf/kern.html b/superx/WEB-INF/conf/edustore/db/install/conf/kern.html new file mode 100644 index 0000000..f3604d0 --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/conf/kern.html @@ -0,0 +1,10748 @@ + + + +Modul-Beschreibung + + + + + + +

Modulbeschreibung kern

+ + + + + + + + + + + + + + + + + + + +
SuperX-Version2
Modulversion5.0
SachgebietAdministration id 0
SysteminfoAdministration id 9
ThemaAdministration
Themenbaum-AstAbfragen
+

Übersicht

+ + + + + + + +
Tabellen und Komponenten (alphabetisch)Tabellen (nach Thema)Tabellen (nach Typ)
+
    +
  1. +Tabellen + +
  2. +
  3. +Joolap-Blueprints +
  4. +
  5. +Views + +
  6. +
  7. +Funktionen / Prozeduren +
  8. +
  9. +Masken +
  10. +
  11. Schnittstellenbeschreibung + +
  12. +
+
+
    +
  1. Administration +
  2. +
  3. Administration +
  4. +
  5. Institutionen verwalten
      +
    • +
    • Benutzer verwalten
        +
      • +
      • Benutzerinfo verwalten
          +
        • +
        • Masken verwalten
            +
          • +
          • Uploads/Downloads verwalten
              +
            • +
            • Felder
                +
              • +
              • Benutzer
                  +
                • +
                • Entwicklung
                    +
                  • +
                  • Stammdaten verwalten +
                  • +
                  +
                  +
                    +
                  1. Ladetabellen
                      +
                    • +
                    • Datentabellen +
                    • +
                    • Schlüsseltabellen +
                    • +
                    • Hilfstabellen
                        +
                      • +
                      +
                      +

                      Datenbankschema

                      +

                      +Tabellen +

                      +
                      +Tabelle aggre_bland +
                      +

                      +

                      Typ: Schlüsseltabelle, Themenbereich: Administration

                      + + + + + + + + + + + + + +
                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                      tidINTEGER4false
                      blandCHAR2false
                      textCHAR40true
                      +

                      Primärschlüssel c_aggre_bland +

                      +
                        +
                      1. tid
                      2. +
                      +
                        +
                          Wird benutzt in folgenden Masken: +
                        +
                        +Tabelle aggregierung +
                        +

                        Modulübergreifende Tabelle für Aggregierungen in + Ergebnisabfragen.

                        +

                        Typ: Schlüsseltabelle, Themenbereich: Administration

                        + + + + + + + + + + + + + + + + + + + +
                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                        tidINTEGER4true
                        ordSMALLINT2false
                        nameCHAR50false
                        kategorieCHAR30false
                        wertCHAR255false
                        +

                        Primärschlüssel co_aggregierung +

                        +
                          +
                        1. tid
                        2. +
                        +
                          +
                            Wird benutzt in folgenden Masken: +
                          +
                          +Tabelle cif +
                          +

                          +

                          Typ: Schlüsseltabelle, Themenbereich: Administration

                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                          tidINTEGER4true
                          hsINTEGER4true
                          keySMALLINT2true
                          apnrINTEGER4true
                          d_akt_vonDATE4false
                          d_akt_bisDATE4false
                          kurzCHAR10false
                          druckCHAR100false
                          lang_1CHAR100false
                          lang_2CHAR150false
                          lang_3CHAR250false
                          sort1INTEGER4false
                          uniquenameVARCHAR255falseSchlüssel
                          +

                          Primärschlüssel c_cif +

                          +
                            +
                          1. tid
                          2. +
                          +
                            +
                          • Index: unique cif_ind auf cif (hs, +key, +apnr ); +
                          • +
                          +
                            Wird benutzt in folgenden Masken: +
                          +
                          +Tabelle cifx +
                          +

                          +

                          Typ: Schlüsseltabelle, Themenbereich: Administration

                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                          tidINTEGER4true
                          hsINTEGER4true
                          keySMALLINT2truecif : apnr +
                          key : +1
                          +
                          apnrCHAR10true
                          d_akt_vonDATE4false
                          d_akt_bisDATE4false
                          kurzVARCHAR255false
                          druckVARCHAR255falseDrucktext
                          lang_1VARCHAR255false
                          lang_2VARCHAR255false
                          lang_3VARCHAR255false
                          parentCHAR10falseübergeordn. Element
                          parent_intINTEGER10falseübergeordn. Element (int)Bei ICE-Schlüsseln
                          filterCHAR10false
                          refapnrCHAR10false
                          astatCHAR10falseamtl. Schlüssel
                          bund_apnrCHAR10falseBundesschlüssel
                          land_apnrCHAR10falseLandesschlüssel
                          hiskey_idVARCHAR255falseHIS-KEYBei GX der hiskey, bei HISINONE hiskey_id
                          uniquenameVARCHAR255falseEindeutiger Name/Schlüssel bei GX
                          sort1INTEGER4false
                          sort2INTEGER4false
                          sort3INTEGER4false
                          sortc1CHAR10false
                          sortc2CHAR10false
                          sourcesysteminteger4falseID des Vorsystems
                          sourcesystem_idVARCHAR255falseID im jew. Vorsystem
                          intern_intINTEGER4false
                          intern_cCHAR10false
                          spracheCHAR3false
                          struktur_intINTEGER4false
                          struktur_cCHAR50false
                          ebeneINTEGER4false
                          lidVARCHAR255falseLanglebige ID
                          parent_lidVARCHAR255falseÜbergeordnete langlebige ID
                          +

                          Primärschlüssel c_cifx_tid +

                          +
                            +
                          1. tid
                          2. +
                          +
                            +
                          • Index: unique cifx_ind auf cifx (hs, +key, +apnr ); +
                          • +
                          • Index: cifx_ind2 auf cifx (uniquename ); +
                          • +
                          +
                            Wird benutzt in folgenden Masken: +
                          +
                          +Tabelle cifx_customize +
                          +

                          +

                          Typ: Schlüsseltabelle, Themenbereich: Administration

                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                          tidSERIAL2trueLaufnr.
                          cifx_tableVARCHAR255trueTabelle
                          keySMALLINT2trueSchlüssel
                          apnrCHAR10trueAusprägung
                          kurzVARCHAR255falseKurztext
                          druckVARCHAR255DrucktextfalseDrucktext
                          lang_1VARCHAR255falseLangtext
                          uniquenameVARCHAR255falseSchlüssel (Anzeige)(Das Feld wird derzeit noch nicht ausgewertet.)
                          +

                          Primärschlüssel c_cifx_customize +

                          +
                            +
                          1. tid
                          2. +
                          +
                            +
                              Wird benutzt in folgenden Masken: +
                            +
                            +Tabelle colorscheme +
                            +

                            +

                            Typ: Schlüsseltabelle, Themenbereich: Administration

                            + + + + + + + + + + + + + + + + +
                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                            idSERIALtrueid
                            captionVARCHAR255Bezeichnung
                            sortorderINTEGERSortierreihenfolge
                            colorsVARCHAR255Farben
                            +
                              +
                                Wird benutzt in folgenden Masken: +
                              +
                              +Tabelle data_upload +
                              +

                              Verzeichnis der Uploads

                              +

                              Typ: Datentabelle, Themenbereich: Administration

                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                              tidSERIAL4true
                              tablenameVARCHAR255trueTabellennamesx_tables : name +
                              +
                              filenameDISKBLOB255falseDatei Pfad zur Datei (relativ zu webapps/superx/WEB-INF/ ) +
                              datatypeVARCHAR255falseDateityp
                              datadelimiterVARCHAR255falseTrennzeichen(Nur bei CSV-Format)
                              dataencodingVARCHAR255falseKodierungutf8,ISO-8859-1 (Nur bei Text-Format)
                              withheaderSMALLINT20falseSpaltenüberschriftenEnthält die Datei Spaltenüberschriften? 1=ja,0=nein +
                              rownumberINTEGER4falseZeilenanzahlAnzahl der gelieferten Datensätze
                              zippedSMALLINT20falsezip-Komprimiert1=ja,0=nein
                              ch110_institutCHAR10falseInstitutionorganigramm : key_apnr +
                              +
                              submission_useridINTEGER2falseUserPerson, die den Download eingereicht hatuserinfo : tid +
                              +
                              submission_emailVARCHAR255falseEmailSpezielle Email-Adresse für die Protokollierung des Ladens +
                              submission_dateDATETIME2falseImportdatumDatum/Uhrzeit des Imports in die SuperX-Datenbank +
                              submission_modeSMALLINT2falseImportmodus1=Hinzufügen,0=Alles Löschen und Hinzufügen
                              submission_commTEXT20000falseKommentarKommentar für Website (Datenlegende o.ä.).
                              submission_notedSMALLINT20falseNachricht bei LieferungLieferung bestätigt (per mail an submission_email) +
                              uploadedSMALLINT20falseHochgeladen?1=ja,0=nein
                              processedSMALLINT20falseErfolgreich Verarbeitet?1=ja,0=nein
                              processor_emailVARCHAR255falseEmailEmail vom Adminstrator, der über die Datei informiert + werden soll
                              processed_dateDATE255falseDatum Verarbeitung1=ja
                              processed_notedSMALLINT20falseNachricht bei Verarbeitung1=ja, Verarbeitung bestätigt (per mail an submission_email + und processor_email)
                              +

                              Primärschlüssel pk_data_upload +

                              +
                                +
                              1. tid
                              2. +
                              +
                                +
                                  Wird benutzt in folgenden Masken: +
                                +
                                +Tabelle db_forms +
                                +

                                +

                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                + + + + + + + + + + + + + + + + + + + + + + +
                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                tidINTEGER4true
                                nameCHAR100false
                                tablenameCHAR100false
                                form_pathCHAR255false
                                captionCHAR200false
                                descriptionCHAR255false
                                +

                                Primärschlüssel pk_db_forms +

                                +
                                  +
                                1. tid
                                2. +
                                +
                                  +
                                    Wird benutzt in folgenden Masken: +
                                  +
                                  +Tabelle db_tabellen +
                                  +

                                  Ein Verzeichnis der Tabellennamen nach dem Schema der + HIS eG.

                                  +

                                  Typ: Schlüsseltabelle, Themenbereich: Administration

                                  + + + + + + + + + + + + + + + + +
                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                  db_einfuegemarkeCHAR6
                                  tabellen_idSERIALtrue
                                  nameCHAR50
                                  protokollierungSMALLINT
                                  +

                                  Primärschlüssel c_db_tabellen +

                                  +
                                    +
                                  1. tabellen_id
                                  2. +
                                  +
                                    +
                                  • Index: unique uxdb_tabellen_name auf db_tabellen (name ); +
                                  • +
                                  • Index: xdb_tabellen_efm auf db_tabellen (db_einfuegemarke ); +
                                  • +
                                  +
                                    Wird benutzt in folgenden Masken: +
                                  +
                                  +Tabelle db_version +
                                  +

                                  Ein Verzeichnis der Modul-Versionen nach dem Schema der + HIS eG.

                                  +

                                  Typ: Schlüsseltabelle, Themenbereich: Administration

                                  + + + + + + + + + + + + + + + + + + + + + + +
                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                  db_einfuegemarkeVARCHAR255
                                  his_systemVARCHAR255
                                  versionCHAR8
                                  kern_systemCHAR1
                                  version_hashVARCHAR32false
                                  systeminfo_idINTEGER4false
                                  +

                                  Primärschlüssel c_db_version +

                                  +
                                    +
                                  1. his_system
                                  2. +
                                  +
                                    +
                                  1. version
                                  2. +
                                  +
                                    +
                                  • Index: unique uxdb_version auf db_version (his_system ); +
                                  • +
                                  • Index: xdb_version_efm auf db_version (db_einfuegemarke ); +
                                  • +
                                  +
                                    Wird benutzt in folgenden Masken: +
                                  +
                                  +Tabelle dbconnections +
                                  +

                                  +

                                  Typ: Schlüsseltabelle, Themenbereich: Administration

                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                  idVARCHAR255true
                                  nameVARCHAR255true
                                  driverVARCHAR255false
                                  urlVARCHAR255false
                                  usernameVARCHAR255false
                                  passwortVARCHAR255false
                                  minidleSMALLINT5false
                                  maxidleSMALLINT5false
                                  maxactiveSMALLINT5false
                                  testsqlVARCHAR255false
                                  +

                                  Primärschlüssel dbconnections_pkey +

                                  +
                                    +
                                  1. id
                                  2. +
                                  +
                                    +
                                      Wird benutzt in folgenden Masken: +
                                    +
                                    +Tabelle dim_bp_altsicht_apnr +
                                    +

                                    Schlüssel für alternative Sichten in Saiku

                                    +

                                    Typ: Schlüsseltabelle, Themenbereich: Administration

                                    + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                    hierarchie_idVARCHAR200true
                                    apnrcharVARCHAR255false
                                    apnrINTEGER255false
                                    parentcharVARCHAR255false
                                    parentINTEGER255false
                                    druckVARCHAR255falseDrucktext
                                    systeminfo_idINTEGER4false
                                    +
                                      +
                                    • Index: ix_dim_bp_alts1 auf dim_bp_altsicht_apnr (hierarchie_id ); +
                                    • +
                                    +
                                      Wird benutzt in folgenden Masken: +
                                    +
                                    +Tabelle dim_bp_apnr +
                                    +

                                    Ausprägungen (in ICE tabellenschluessel):

                                    +

                                    Typ: Schlüsseltabelle, Themenbereich: Administration

                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                    dimension_bp_idINTEGER4true
                                    apnrINTEGER255true
                                    parentINTEGER255falsefalls in der Standardhierarchie schon parents vergeben sind, können die hier eingetragen weren
                                    druckVARCHAR255falseDrucktext
                                    systeminfo_idINTEGER4false
                                    kurztextVARCHAR255falseKurztext
                                    langtextVARCHAR255falseLangtext
                                    uniquenameCHAR255falseSchlüssel (alphanumerisch)
                                    level1_intINTEGER4falseAuswertungsebene 1 (ganzzahlig)
                                    level1_charCHAR255falseAuswertungsebene 1 (String)
                                    level1_strCHAR255falseAuswertungsebene 1 (Bezeichnungstext)
                                    level2_intINTEGER4falseAuswertungsebene 2 (ganzzahlig)
                                    level2_charCHAR255falseAuswertungsebene 2 (String)
                                    level2_strCHAR255falseAuswertungsebene 2 (Bezeichnungstext)
                                    level3_intINTEGER4falseAuswertungsebene 3 (ganzzahlig)
                                    level3_charCHAR255falseAuswertungsebene 3 (String)
                                    level3_strCHAR255falseAuswertungsebene 3 (Bezeichnungstext)
                                    sortorderINTEGER8Sortierreihenfolge
                                    +
                                      +
                                    • Index: unique ix_dim_bp_apnr auf dim_bp_apnr (dimension_bp_id, +apnr ); +
                                    • +
                                    • Index: ix_dim_bp_apnr2 auf dim_bp_apnr (systeminfo_id ); +
                                    • +
                                    • Index: ix_level1_int1 auf dim_bp_apnr (level1_int, +level1_char ); +
                                    • +
                                    • Index: ix_level1_int2 auf dim_bp_apnr (level2_int, +level2_char ); +
                                    • +
                                    • Index: ix_level3_int1 auf dim_bp_apnr (level3_int, +level3_char ); +
                                    • +
                                    +
                                      Wird benutzt in folgenden Masken: +
                                    +
                                    +Tabelle dim_closure +
                                    +

                                    Beziehungstabelle von Schlüsseln für Saiku

                                    +

                                    Typ: Schlüsseltabelle, Themenbereich: Administration

                                    + + + + + + + + + + + + + + + + + + + +
                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                    dimension_bp_idINTEGER4false
                                    hierarchie_idvarchar200false
                                    keyINTEGER4true
                                    parentINTEGER255true
                                    distanceINTEGER255false
                                    +
                                      +
                                    • Index: ix_dim_c1 auf dim_closure (hierarchie_id, +key ); +
                                    • +
                                    • Index: ix_dim_c2 auf dim_closure (hierarchie_id, +parent, +key ); +
                                    • +
                                    +
                                      Wird benutzt in folgenden Masken: +
                                    +
                                    +Tabelle dim_datum +
                                    +

                                    Tabelle für eine übergreifende Datumsdimension

                                    +

                                    Typ: Schlüsseltabelle, Themenbereich: Studierende

                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                    idINTEGER8true
                                    yearINTEGER4false
                                    monthINTEGER1false
                                    day_of_monthINTEGER2false
                                    day_of_weekINTEGER1false
                                    day_of_yearINTEGER3false
                                    week_of_yearINTEGER2false
                                    day_nameVARCHAR25false
                                    month_nameVARCHAR25false
                                    quarterINTEGER1false
                                    weekend_indCHAR1false
                                    days_in_monthINTEGER2false
                                    day_descVARCHAR25false
                                    day_dateDATEfalse
                                    semesterVARCHAR25false
                                    semester_keyINTEGER5false
                                    +

                                    Primärschlüssel dim_datum_id +

                                    +
                                      +
                                    1. id
                                    2. +
                                    +
                                      +
                                    • Index: ix_dim_datum_day_date auf dim_datum (day_date ); +
                                    • +
                                    +
                                      Wird benutzt in folgenden Masken: +
                                    +
                                    +Tabelle dimension +
                                    +

                                    Merkmale (konkret) (in ICE tabellenmerkmale): +

                                    +

                                    Typ: Schlüsseltabelle, Themenbereich: Administration

                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                    tidSERIAL4true
                                    dimension_bp_idINTEGER4true
                                    fact_tableVARCHAR255false
                                    d_akt_vonDATE4false
                                    d_akt_bisDATE4false
                                    nameVARCHAR255false
                                    druckVARCHAR255falseDrucktext
                                    lang_1VARCHAR255false
                                    lang_2VARCHAR255false
                                    lang_3VARCHAR255false
                                    sourcefilterVARCHAR255falsewhere-Bedingungggf. zusätzliche where-Bedingung für blueprint
                                    system_keyVARCHAR255falseSchlüssel der Anwendungwird von Anwendung gesetzt, darf nicht geändert werden +
                                    +

                                    Primärschlüssel c_dim_tid +

                                    +
                                      +
                                    1. tid
                                    2. +
                                    +
                                      +
                                        Wird benutzt in folgenden Masken: +
                                      +
                                      +Tabelle dimension_bp +
                                      +

                                      Merkmale (abstrakt)

                                      +

                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                      tidSERIAL4true
                                      apnrVARCHAR255true
                                      d_akt_vonDATE4false
                                      d_akt_bisDATE4false
                                      kurzVARCHAR255false
                                      druckVARCHAR255falseDrucktext
                                      lang_1VARCHAR255false
                                      lang_2VARCHAR255false
                                      lang_3VARCHAR255false
                                      keyfieldVARCHAR255falseSchlüsselfeld
                                      keyfieldtypeVARCHAR255falseTyp Schlüsselfeld
                                      datatypeVARCHAR255falsenominal/stetig
                                      captionfieldVARCHAR255falseBezeichnungsfeld
                                      sortfieldVARCHAR255falseSortierfeld
                                      sourceVARCHAR255falseQuelltabelle
                                      sourcefilterVARCHAR255falseggf. auch where-Bedingung für Quelltabelle
                                      system_keyVARCHAR255falseSchlüssel der Anwendungwird von Anwendung gesetzt, darf nicht geändert werden +
                                      +

                                      Primärschlüssel c_dim_bp_tid +

                                      +
                                        +
                                      1. tid
                                      2. +
                                      +
                                        +
                                          Wird benutzt in folgenden Masken: +
                                        +
                                        +Tabelle download_group_bez +
                                        +

                                        Zuordnung Gruppen zu Download-Adressen

                                        +

                                        Typ: Schlüsseltabelle, Themenbereich: Administration

                                        + + + + + + + + + + +
                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                        groupinfo_idINTEGER4false
                                        download_idINTEGER4false
                                        +

                                        Primärschlüssel c_downloadgroup_b +

                                        +
                                          +
                                        1. groupinfo_id
                                        2. +
                                        +
                                          +
                                        1. download_id
                                        2. +
                                        +
                                          +
                                            Wird benutzt in folgenden Masken: +
                                          +
                                          +Tabelle download_keyw_bez +
                                          +

                                          Zuordnung Stichwörter zu Download-Adressen

                                          +

                                          Typ: Schlüsseltabelle, Themenbereich: Administration

                                          + + + + + + + + + + +
                                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                          keyword_idINTEGER4false
                                          download_idINTEGER4false
                                          +

                                          Primärschlüssel c_downloadthm_b +

                                          +
                                            +
                                          1. keyword_id
                                          2. +
                                          +
                                            +
                                          1. download_id
                                          2. +
                                          +
                                            +
                                              Wird benutzt in folgenden Masken: +
                                            +
                                            +Tabelle download_user_bez +
                                            +

                                            Zuordnung Gruppen zu Download-Adressen

                                            +

                                            Typ: Schlüsseltabelle, Themenbereich: Administration

                                            + + + + + + + + + + +
                                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                            userinfo_idINTEGER4false
                                            download_idINTEGER4false
                                            +

                                            Primärschlüssel c_downloaduser_b +

                                            +
                                              +
                                            1. userinfo_id
                                            2. +
                                            +
                                              +
                                            1. download_id
                                            2. +
                                            +
                                              +
                                                Wird benutzt in folgenden Masken: +
                                              +
                                              +Tabelle etl_job +
                                              +

                                              Schlüsseltabelle für Ladejobs

                                              +

                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                              + + + + + + + + + + + + + + + + + + + + + + +
                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                              tidSERIALtruetid
                                              uniquenameVARCHAR255trueSchlüssel
                                              captionVARCHAR255Bezeichnung
                                              systeminfo_idINTEGERtrueKomponente
                                              logfileVARCHAR255falseLogdatei
                                              custom_jobSMALLINT2551falseJob custom1=ja, d.h. von der Hochschule angepaßt, 0=nein, d.h. + Auslieferung der Software
                                              +

                                              Primärschlüssel etl_job_pk +

                                              +
                                                +
                                              1. tid
                                              2. +
                                              +
                                                +
                                              • Index: unique ix_etl_job1 auf etl_job (uniquename ); +
                                              • +
                                              +
                                                Wird benutzt in folgenden Masken: +
                                              +
                                              +Tabelle etl_job_param +
                                              +

                                              Schlüsseltabelle für Parameter für Ladejobs

                                              +

                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                              + + + + + + + + + + + + + + + + + + + +
                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                              tidSERIALtruetid
                                              etl_job_idINTEGERtrueLadejob
                                              uniquenameVARCHAR255trueUnique Name
                                              nameVARCHAR255Bezeichnung
                                              param_defaultVARCHAR255falseDefaultwert
                                              +

                                              Primärschlüssel etl_job_param_pk +

                                              +
                                                +
                                              1. tid
                                              2. +
                                              +
                                                +
                                                  Wird benutzt in folgenden Masken: +
                                                +
                                                +Tabelle etl_step +
                                                +

                                                Schlüsseltabelle für Ladeschritte

                                                +

                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                tidSERIALtruetid
                                                uniquenameVARCHAR255trueUnique Name
                                                captionVARCHAR255Bezeichnung
                                                systeminfo_idINTEGERtrueKomponente
                                                step_type_idINTEGER2trueTyp des Schrittes1=Gruppierung, + 2=Loadtable,3=nativeaction,4=loadmask,5=select
                                                logfileVARCHAR255falseLogdatei
                                                custom_stepSMALLINT2551falseLadeschritt custom1=ja, d.h. von der Hochschule angepaßt, 0=nein, d.h. + Auslieferung der Software
                                                +

                                                Primärschlüssel etl_step_pk +

                                                +
                                                  +
                                                1. tid
                                                2. +
                                                +
                                                  +
                                                    Wird benutzt in folgenden Masken: +
                                                  +
                                                  +Tabelle etl_step_property +
                                                  +

                                                  Schlüsseltabelle für Eigenschaften von Ladeschritten +

                                                  +

                                                  Typ: Schlüsseltabelle, Themenbereich: Administration

                                                  + + + + + + + + + + + + + + + + +
                                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                  tidSERIALtruetid
                                                  etl_step_idINTEGERtrueArten des Ladeschritts
                                                  prop_nameVARCHAR255Bezeichnung
                                                  prop_valueTEXT255falseWert
                                                  +

                                                  Primärschlüssel etl_step_property_pk +

                                                  +
                                                    +
                                                  1. tid
                                                  2. +
                                                  +
                                                    +
                                                      Wird benutzt in folgenden Masken: +
                                                    +
                                                    +Tabelle etl_step_relation +
                                                    +

                                                    Schlüsseltabelle für Beziehungen zwischen Ladeschritten, + und Ausführungssteuerung

                                                    +

                                                    Typ: Schlüsseltabelle, Themenbereich: Administration

                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                    tidSERIALtruetid
                                                    step_idINTEGER2trueLadeschritt
                                                    parent_step_idINTEGER2falseÜbergeordneter Ladeschritt
                                                    job_idINTEGER2trueLadejob
                                                    force_continueSMALLINT21falseLadejob bei Fehler weiterführen
                                                    step_activeSMALLINT21falseLadeschritt aktiv
                                                    sortnrINTEGER21falseLadeschritt Sortiernr.
                                                    custom_stepSMALLINT21falseLadeschritt custom1=ja, d.h. von der Hochschule angepaßt, 0=nein, d.h. + Auslieferung der Software
                                                    +

                                                    Primärschlüssel etl_step_relation_pk +

                                                    +
                                                      +
                                                    1. tid
                                                    2. +
                                                    +
                                                      +
                                                        Wird benutzt in folgenden Masken: +
                                                      +
                                                      +Tabelle etl_step_type +
                                                      +

                                                      Schlüsseltabelle für Arten von Ladeschritten, z.B. + loadtable, nativeaction,unload

                                                      +

                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                      + + + + + + + + + + + + + + + + +
                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                      tidSERIALtruetid
                                                      uniquenameVARCHAR255trueUnique Name
                                                      captionVARCHAR255Bezeichnung
                                                      handlerVARCHAR255falseHandler-Anwendung
                                                      +

                                                      Primärschlüssel etl_step_type_pk +

                                                      +
                                                        +
                                                      1. tid
                                                      2. +
                                                      +
                                                        +
                                                          Wird benutzt in folgenden Masken: +
                                                        +
                                                        +Tabelle etl_step_type_param +
                                                        +

                                                        Schlüsseltabelle für Parameter für Arten von + Ladeschritten

                                                        +

                                                        Typ: Schlüsseltabelle, Themenbereich: Administration

                                                        + + + + + + + + + + + + + + + + + + + +
                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                        tidSERIALtruetid
                                                        etl_step_type_idINTEGERtrueArten des Ladeschritts
                                                        uniquenameVARCHAR255trueUnique Name
                                                        nameVARCHAR255Bezeichnung
                                                        param_defaultVARCHAR255falseDefaultwert
                                                        +

                                                        Primärschlüssel etl_step_type_param_pk +

                                                        +
                                                          +
                                                        1. tid
                                                        2. +
                                                        +
                                                          +
                                                            Wird benutzt in folgenden Masken: +
                                                          +
                                                          +Tabelle felderinfo +
                                                          +

                                                          +

                                                          Typ: Schlüsseltabelle, Themenbereich: Administration

                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                          tidINTEGER4true
                                                          nameVARCHAR255true
                                                          nummerINTEGER4true
                                                          xINTEGER4false
                                                          yINTEGER4false
                                                          buttonbreiteINTEGER4false
                                                          feldbreiteINTEGER4false
                                                          zeilenanzahlINTEGER4false
                                                          typCHAR15falsemenu_element : element +
                                                          element_value::char(15) : +typ
                                                          +
                                                          laengeINTEGER4false
                                                          obligatorischINTEGER4falsemenu_element_mandatory : element +
                                                          element_value : +obligatorisch
                                                          +
                                                          artINTEGER4falsemenu_element_fieldmode : element +
                                                          element_value : +art
                                                          +
                                                          relationtextfalse
                                                          attributCHAR100false
                                                          defaultwertCHAR255false
                                                          +

                                                          Primärschlüssel c_felderinfo +

                                                          +
                                                            +
                                                          1. tid
                                                          2. +
                                                          +
                                                            +
                                                              Wird benutzt in folgenden Masken: +
                                                            +
                                                            +Tabelle fm_templates +
                                                            +

                                                            +

                                                            Typ: Schlüsseltabelle, Themenbereich: Administration

                                                            + + + + + + + + + + + + + + + + + + + + + + +
                                                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                            tidSERIAL4true
                                                            idchar200true
                                                            contenttexttrue
                                                            descriptionchar200false
                                                            commentchar200false
                                                            versioninteger1false
                                                            +

                                                            Primärschlüssel pk_fm_tid +

                                                            +
                                                              +
                                                            1. tid
                                                            2. +
                                                            +
                                                              +
                                                            • Index: unique ix_fm_templates_tid auf fm_templates (id ); +
                                                            • +
                                                            +
                                                              Wird benutzt in folgenden Masken: +
                                                            +
                                                            +Tabelle graphicformat +
                                                            +

                                                            +

                                                            Typ: Schlüsseltabelle, Themenbereich: Administration

                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                            idCHAR100true
                                                            charttypeCHAR255true
                                                            captionCHAR255false
                                                            widthINTEGER4false
                                                            heightINTEGER4false
                                                            captionxCHAR255false
                                                            captionyCHAR255false
                                                            linexINTEGER4true
                                                            lineyINTEGER4true
                                                            showvaluesINTEGER4true
                                                            moreattribsTEXTfalse
                                                            +

                                                            Primärschlüssel c_graphicformat +

                                                            +
                                                              +
                                                            1. id
                                                            2. +
                                                            +
                                                              +
                                                                Wird benutzt in folgenden Masken: +
                                                              +
                                                              +Tabelle group_field_pref +
                                                              +

                                                              Möglichkeit für bestimmte Gruppen Felder auszublenden, + hidden in pref setzen.

                                                              +

                                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                                              + + + + + + + + + + + + + + + + +
                                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                              tidserialLaufnummer
                                                              groupinfo_idintegerGruppegroupinfo : tid +
                                                              +
                                                              field_idintegerFeldfelderinfo : tid +
                                                              +
                                                              prefvarchar255Aktion
                                                              +

                                                              Primärschlüssel ix_group_felder_p1 +

                                                              +
                                                                +
                                                              1. tid
                                                              2. +
                                                              +
                                                                +
                                                              • Index: ix_group_felder2 auf group_field_pref (groupinfo_id ); +
                                                              • +
                                                              +
                                                                Wird benutzt in folgenden Masken: +
                                                              +
                                                              +Tabelle group_hinweis +
                                                              +

                                                              Gruppen die bestimmte Hinweise sehen/bestätigen müssen +

                                                              +

                                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                                              + + + + + + + + + + +
                                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                              groupinfo_idINTEGERtrue
                                                              hinweise_idintegertrue
                                                              +

                                                              Primärschlüssel c_grp_hinweis +

                                                              +
                                                                +
                                                              1. groupinfo_id
                                                              2. +
                                                              +
                                                                +
                                                              1. hinweise_id
                                                              2. +
                                                              +
                                                                +
                                                                  Wird benutzt in folgenden Masken: +
                                                                +
                                                                +Tabelle group_masken_bez +
                                                                +

                                                                +

                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                + + + + + + + + + + +
                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                groupinfo_idINTEGER4falsegroupinfo : tid +
                                                                +
                                                                maskeninfo_idINTEGER4falsemaskeninfo : tid +
                                                                +
                                                                +

                                                                Primärschlüssel c_group_masken_bez +

                                                                +
                                                                  +
                                                                1. groupinfo_id
                                                                2. +
                                                                +
                                                                  +
                                                                1. maskeninfo_id
                                                                2. +
                                                                +
                                                                  +
                                                                    Wird benutzt in folgenden Masken: +
                                                                  +
                                                                  +Tabelle group_portlet_bez +
                                                                  +

                                                                  +

                                                                  Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                  + + + + + + + + + + +
                                                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                  groupinfo_idINTEGER4falseGroupID
                                                                  portlet_idINTEGER4falsePortlet
                                                                  +

                                                                  Primärschlüssel c_group_portlet_bez +

                                                                  +
                                                                    +
                                                                  1. portlet_id
                                                                  2. +
                                                                  +
                                                                    +
                                                                  1. groupinfo_id
                                                                  2. +
                                                                  +
                                                                    +
                                                                      Wird benutzt in folgenden Masken: +
                                                                    +
                                                                    +Tabelle group_sachgeb_bez +
                                                                    +

                                                                    +

                                                                    Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                    + + + + + + + + + + +
                                                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                    groupinfo_idINTEGER4falsegroupinfo : tid +
                                                                    +
                                                                    sachgebiete_idINTEGER4falsesachgebiete : tid +
                                                                    +
                                                                    +

                                                                    Primärschlüssel c_group_sachgeb_bez +

                                                                    +
                                                                      +
                                                                    1. groupinfo_id
                                                                    2. +
                                                                    +
                                                                      +
                                                                    1. sachgebiete_id
                                                                    2. +
                                                                    +
                                                                      +
                                                                        Wird benutzt in folgenden Masken: +
                                                                      +
                                                                      +Tabelle group_sichtarten +
                                                                      +

                                                                      +

                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                      + + + + + + + + + + +
                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                      groupinfo_idINTEGERfalsegroupinfo : tid +
                                                                      +
                                                                      sichtartCHAR255falseRechte für eine Art von Sichten geben
                                                                      +

                                                                      Primärschlüssel pk_group_sichtart +

                                                                      +
                                                                        +
                                                                      1. groupinfo_id
                                                                      2. +
                                                                      +
                                                                        +
                                                                      1. sichtart
                                                                      2. +
                                                                      +
                                                                        +
                                                                          Wird benutzt in folgenden Masken: +
                                                                        +
                                                                        +Tabelle group_sichten +
                                                                        +

                                                                        +

                                                                        Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                        + + + + + + + + + + +
                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                        groupinfo_idINTEGERfalsegroupinfo : tid +
                                                                        +
                                                                        sicht_name_internCHAR200falseRechte für eine einzelne Sicht gebensichten : name_intern +
                                                                        +
                                                                        +

                                                                        Primärschlüssel pk_group_sicht +

                                                                        +
                                                                          +
                                                                        1. groupinfo_id
                                                                        2. +
                                                                        +
                                                                          +
                                                                        1. sicht_name_intern
                                                                        2. +
                                                                        +
                                                                          +
                                                                            Wird benutzt in folgenden Masken: +
                                                                          +
                                                                          +Tabelle groupinfo +
                                                                          +

                                                                          +

                                                                          Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                          + + + + + + + + + + +
                                                                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                          tidINTEGER4false
                                                                          nameCHAR255false
                                                                          +

                                                                          Primärschlüssel c_groupinfo +

                                                                          +
                                                                            +
                                                                          1. tid
                                                                          2. +
                                                                          +
                                                                            +
                                                                              Wird benutzt in folgenden Masken: +
                                                                            +
                                                                            +Tabelle hisinone_deleted_entity +
                                                                            +

                                                                            Entities die in HISinOne gelöscht wurden.

                                                                            +

                                                                            Typ: Datentabelle, Themenbereich: Administration

                                                                            + + + + + + + + + + + + + + + + + + + + + + +
                                                                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                            person_idINTEGER4falseperson_id der gelöschten Entity
                                                                            matrikel_nrINTEGER4falseMatrikelnummer der gelöschten Entity
                                                                            entityVARCHAR255falseEntiy-Klasse des gelöschten Objekts in HisInOne
                                                                            deleted_in_hisinoneDATETIME4falseZeitpunkt der Löschung in HISinOne
                                                                            deleted_in_biDATETIME4falseZeitpunkt der Löschung in der BI
                                                                            jobVARCHAR255falseJob-Ausführung in HisInOne von der Delete-Event ausgelöst wird
                                                                            +
                                                                              +
                                                                                Wird benutzt in folgenden Masken: +
                                                                              +
                                                                              +Tabelle hochschulinfo +
                                                                              +

                                                                              +

                                                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                              nameCHAR100true
                                                                              adresseCHAR200false
                                                                              hs_nrINTEGER4trueHochschulnummer (HIS)hochschulen : hs_nr +
                                                                              +
                                                                              kapitelCHAR5true
                                                                              superx_serverCHAR100true
                                                                              kennungCHAR8false(Obsolet)
                                                                              passwdCHAR16false(Obsolet)
                                                                              +

                                                                              Primärschlüssel c_hochschulinfo +

                                                                              +
                                                                                +
                                                                              1. hs_nr
                                                                              2. +
                                                                              +
                                                                                +
                                                                                  Wird benutzt in folgenden Masken: +
                                                                                +
                                                                                +Tabelle implicit_orgunit_rights +
                                                                                +

                                                                                Schlüsseltabelle für LiveMapping

                                                                                +

                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                + + + + + + + + + + + + + + + + +
                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                userinfo_idINTEGERVerweis auf userinfo.tid
                                                                                apnrVARCHAR255OrgUnit-Schlüssel (aus organigramm bzw. cifx key 110)
                                                                                uniquenameVARCHAR255truezugehöriger uniqname
                                                                                lidVARCHAR255id
                                                                                +
                                                                                  +
                                                                                • Index: ix_implicit_orgrights1 auf implicit_orgunit_rights (userinfo_id ); +
                                                                                • +
                                                                                +
                                                                                  Wird benutzt in folgenden Masken: +
                                                                                +
                                                                                +Tabelle k_astat_abschluss2steller (Amtl.Abschluss-Schlüssel (Bundesschlüssel)) +
                                                                                +

                                                                                +

                                                                                Typ: Schlüsseltabelle, Themenbereich: Stammdaten verwalten

                                                                                + + + + + + + + + + +
                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                schluesselVARCHAR255trueSchlüssel
                                                                                nameVARCHAR255falseName
                                                                                +
                                                                                  +
                                                                                    Wird benutzt in folgenden Masken: +
                                                                                  +
                                                                                  +Tabelle k_astat_abschluss3steller_land (Amtl.Abschluss-Schlüssel (Land) zu Bundesschlüssel) +
                                                                                  +

                                                                                  +

                                                                                  Typ: Schlüsseltabelle, Themenbereich: Stammdaten verwalten

                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                  schluesselVARCHAR255trueSchlüssel
                                                                                  gueltig_abINTEGER10false
                                                                                  landINTEGER10falseBundesland
                                                                                  versionINTEGER10false
                                                                                  sortkeyINTEGER10false
                                                                                  gueltig_bisINTEGER10false
                                                                                  nameVARCHAR255falseName
                                                                                  sig2stellerVARCHAR255falseBundesschlüssel Abschluss2-steller
                                                                                  keybundVARCHAR255falseBundesschlüssel Studienform+Abschluss3-steller
                                                                                  +
                                                                                    +
                                                                                      Wird benutzt in folgenden Masken: +
                                                                                    +
                                                                                    +Tabelle k_astat_faechergruppe (Amtl.Fächergruppen-Schlüssel (Bundesschlüssel)) +
                                                                                    +

                                                                                    +

                                                                                    Typ: Schlüsseltabelle, Themenbereich: Stammdaten verwalten

                                                                                    + + + + + + + + + + +
                                                                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                    schluesselVARCHAR255trueSchlüssel
                                                                                    nameVARCHAR255falseName
                                                                                    +
                                                                                      +
                                                                                        Wird benutzt in folgenden Masken: +
                                                                                      +
                                                                                      +Tabelle k_astat_kontinent (Kontinent-Schlüssel (Bundesschlüssel)) +
                                                                                      +

                                                                                      +

                                                                                      Typ: Schlüsseltabelle, Themenbereich: Stammdaten verwalten

                                                                                      + + + + + + + + + + + + + +
                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                      schluesselINTEGER255trueSchlüssel
                                                                                      nummerVARCHAR255falseNummer
                                                                                      nameVARCHAR255falseName
                                                                                      +

                                                                                      Primärschlüssel c_k_astat_kontinent +

                                                                                      +
                                                                                        +
                                                                                      1. schluessel
                                                                                      2. +
                                                                                      +
                                                                                        +
                                                                                          Wird benutzt in folgenden Masken: +
                                                                                        +
                                                                                        +Tabelle k_astat_staat (Amtl.Staaten-Schlüssel (Bundesschlüssel)) +
                                                                                        +

                                                                                        +

                                                                                        Typ: Schlüsseltabelle, Themenbereich: Stammdaten verwalten

                                                                                        + + + + + + + + + + + + + + + + + + + +
                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                        schluesselINTEGER255trueSchlüssel
                                                                                        nummerVARCHAR255falseNummer
                                                                                        nameVARCHAR255falseName
                                                                                        kennzVARCHAR255falseKennzeichen
                                                                                        kontinentINTEGER255falseKontinent
                                                                                        +

                                                                                        Primärschlüssel c_k_astat_staat +

                                                                                        +
                                                                                          +
                                                                                        1. schluessel
                                                                                        2. +
                                                                                        +
                                                                                          +
                                                                                            Wird benutzt in folgenden Masken: +
                                                                                          +
                                                                                          +Tabelle k_astat_studienbereich (Amtl.Sudienbereich-Schlüssel (Bundesschlüssel)) +
                                                                                          +

                                                                                          +

                                                                                          Typ: Schlüsseltabelle, Themenbereich: Stammdaten verwalten

                                                                                          + + + + + + + + + + + + + +
                                                                                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                          schluesselVARCHAR255trueSchlüssel
                                                                                          nameVARCHAR255falseName
                                                                                          fgrVARCHAR255falseFächergruppe (Schlüssel)
                                                                                          +
                                                                                            +
                                                                                              Wird benutzt in folgenden Masken: +
                                                                                            +
                                                                                            +Tabelle k_astat_studienfach (Amtl.Sudienfach-Schlüssel (Bundesschlüssel)) +
                                                                                            +

                                                                                            +

                                                                                            Typ: Schlüsseltabelle, Themenbereich: Stammdaten verwalten

                                                                                            + + + + + + + + + + + + + +
                                                                                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                            schluesselVARCHAR255trueSchlüssel
                                                                                            nameVARCHAR255falseName
                                                                                            sbVARCHAR255falseStudienbereich (Schlüssel)
                                                                                            +
                                                                                              +
                                                                                                Wird benutzt in folgenden Masken: +
                                                                                              +
                                                                                              +Tabelle k_astat_studienfach_land (Amtl.Fächerschlüssel (Land) zu Bundesschlüssel) +
                                                                                              +

                                                                                              +

                                                                                              Typ: Schlüsseltabelle, Themenbereich: Stammdaten verwalten

                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                              schluesselVARCHAR255false
                                                                                              gueltig_abINTEGER10false
                                                                                              landINTEGER10false
                                                                                              versionINTEGER10false
                                                                                              sortkeyINTEGER10false
                                                                                              gueltig_bisINTEGER10false
                                                                                              nameVARCHAR255false
                                                                                              iscedVARCHAR255false
                                                                                              keybundVARCHAR255false
                                                                                              +
                                                                                                +
                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                +
                                                                                                +Tabelle kern_cifx_neu +
                                                                                                +

                                                                                                LAdetabelle für zentrale Stammdaten (derzeit Kostenstellen/Orgunits) durch HLR gefüllt

                                                                                                +

                                                                                                Typ: Datentabelle, Themenbereich: Administration

                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                keySMALLINT2true
                                                                                                hsINTEGER4true
                                                                                                apnrVARCHAR255false
                                                                                                kurzCHAR10false
                                                                                                druckVARCHAR200false
                                                                                                lang_1CHAR255false
                                                                                                astatCHAR50false
                                                                                                parentVARCHAR255false
                                                                                                uniquenameVARCHAR255false
                                                                                                bund_apnrCHAR10false
                                                                                                d_akt_vonDATE4false
                                                                                                d_akt_bisDATE4false
                                                                                                sourcesystem_idVARCHAR255false
                                                                                                hiskey_idVARCHAR255false
                                                                                                struktur_cCHAR50false
                                                                                                lidVARCHAR255falseLanglebige ID
                                                                                                parent_lidVARCHAR255falseÜbergeordnete langlebige ID
                                                                                                sortorderINTEGER255falseSortiernummer
                                                                                                +
                                                                                                  +
                                                                                                    Wird benutzt in folgenden Masken: +
                                                                                                  +
                                                                                                  +Tabelle kern_pruefrout +
                                                                                                  +

                                                                                                  Log-Tabelle für Prüfroutinen

                                                                                                  +

                                                                                                  Typ: Datentabelle, Themenbereich: Administration

                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                  tidSERIAL4false
                                                                                                  datumDATE2false
                                                                                                  gueltig_vonDATE4false
                                                                                                  gueltig_bisDATE4false
                                                                                                  tabelle_quelleCHAR18false
                                                                                                  tabelleCHAR18false
                                                                                                  problemCHAR255false
                                                                                                  aktionCHAR255false
                                                                                                  +

                                                                                                  Primärschlüssel ix_kern_pruef_tid +

                                                                                                  +
                                                                                                    +
                                                                                                  1. tid
                                                                                                  2. +
                                                                                                  +
                                                                                                    +
                                                                                                      Wird benutzt in folgenden Masken: +
                                                                                                    +
                                                                                                    +Tabelle konstanten (Konstanten) +
                                                                                                    +

                                                                                                    Parameter zum Steuern des Systemverhaltens (Transformations- und Aggregationsprozess)

                                                                                                    +

                                                                                                    Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                    tidserialtrue
                                                                                                    apnrINTEGER4falseaktueller Wert
                                                                                                    beschreibungVARCHAR255falseParametername
                                                                                                    defaultvalueINTEGER4falseStandardwert
                                                                                                    descriptionVARCHAR255falseErläuterungstext
                                                                                                    systeminfo_idINTEGER2falseKomponentesysteminfo : tid +
                                                                                                    +
                                                                                                    sachgebiete_idINTEGER2falseSachgebietsachgebiete : tid +
                                                                                                    +
                                                                                                    doku_linkVARCHAR255falseLink zur Dokumentation
                                                                                                    read_onlyINTEGER2false1=nicht änderbar,0=änderbar
                                                                                                    wertebereichVARCHAR255falseWertebereich
                                                                                                    ab_versionVARCHAR20falseNutzbar ab Version
                                                                                                    gruppeVARCHAR100falseGruppe
                                                                                                    priorityINTEGER2false1=Minimalparameter,0= Standard
                                                                                                    sourcesystemINTEGER2false3= Fremdsystem,2=HIS GX,1=HISinOne,0=alle
                                                                                                    +

                                                                                                    Primärschlüssel co_konstanten +

                                                                                                    +
                                                                                                      +
                                                                                                    1. tid
                                                                                                    2. +
                                                                                                    +
                                                                                                      +
                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                      +
                                                                                                      +Tabelle kostentraeger (Kostenträger) +
                                                                                                      +

                                                                                                      +

                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                      key_apnrCHAR50falseSchlüssel
                                                                                                      parentCHAR50falseÜbergeordneter Knoten im Baum
                                                                                                      drucktextCHAR50falseDrucktext
                                                                                                      nameVARCHAR255falseName
                                                                                                      gueltig_seitDATE4trueGültig von
                                                                                                      gueltig_bisDATE4trueGültig bis
                                                                                                      struktur_intINTEGER4falseStrukturmerkmal
                                                                                                      struktur_cCHAR50falseStrukturmerkmal
                                                                                                      astatCHAR15falseamtl. Schlüssel
                                                                                                      uniquenameVARCHAR255falseEindeutiger Name/Schlüssel bei GX
                                                                                                      key_extVARCHAR15false
                                                                                                      infoVARCHAR215falsez.B. Quelle aus FIN-Modul
                                                                                                      +
                                                                                                        +
                                                                                                      • Index: kostentr_ixktr auf kostentraeger (key_apnr ); +
                                                                                                      • +
                                                                                                      +
                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                      +
                                                                                                      +Tabelle kotr_to_inst +
                                                                                                      +

                                                                                                      Zuordnung Kostenträger/Projekt zu einer Kostenstelle

                                                                                                      +

                                                                                                      Typ: Schlüsseltabelle

                                                                                                      + + + + + + + + + + + + + +
                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                      projnrCHAR24falseProjekt
                                                                                                      inst_nrCHAR24falseKostenstelle
                                                                                                      haupt_kst_kzCHAR1falseHauptkostenstelle ja/nein
                                                                                                      +
                                                                                                        +
                                                                                                      • Index: ix_kotr_to_inst1 auf kotr_to_inst (projnr ); +
                                                                                                      • +
                                                                                                      +
                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                      +
                                                                                                      +Tabelle lehr_orga_bez +
                                                                                                      +

                                                                                                      Zuordnung Lehreinheiten zu Kostenstellen (obsolet) +

                                                                                                      +

                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                      + + + + + + + + + + + + + + + + + + + +
                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                      lehr_idCHAR10false
                                                                                                      orga_idCHAR10false
                                                                                                      nameCHAR50false
                                                                                                      gueltig_seitDATE4false
                                                                                                      gueltig_bisDATE4false
                                                                                                      +
                                                                                                        +
                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                        +
                                                                                                        +Tabelle lehreinheit_inst +
                                                                                                        +

                                                                                                        +

                                                                                                        Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                        key_apnrCHAR10false
                                                                                                        parentCHAR10false
                                                                                                        drucktextCHAR50false
                                                                                                        lehrCHAR10false
                                                                                                        gueltig_seitDATE4false
                                                                                                        gueltig_bisDATE4false
                                                                                                        +
                                                                                                          +
                                                                                                            Wird benutzt in folgenden Masken: +
                                                                                                          +
                                                                                                          +Tabelle macro_feld_wert +
                                                                                                          +

                                                                                                          +

                                                                                                          Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                          macroINTEGER4trueMakro-Maskemaskeninfo : tid +
                                                                                                          +
                                                                                                          sortnrINTEGER4trueSortiernr.
                                                                                                          feldnameCHAR255trueFeldname
                                                                                                          aliasCHAR255falseAlias
                                                                                                          valueCHAR255falseFeldwert
                                                                                                          value_captionCHAR255falseFeldwert Beschriftung
                                                                                                          feldstandCHAR255falseFeld für Standdatum
                                                                                                          feldsichtCHAR255falseName der Sichtsichten : name_intern +
                                                                                                          +
                                                                                                          activeINTEGER41trueAktiv
                                                                                                          +
                                                                                                            +
                                                                                                              Wird benutzt in folgenden Masken: +
                                                                                                            +
                                                                                                            +Tabelle macro_masken_bez +
                                                                                                            +

                                                                                                            +

                                                                                                            Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                            maskeninfo_id1INTEGERtrueHauptmaskemaskeninfo : tid +
                                                                                                            +
                                                                                                            maskeninfo_id2INTEGERtrueUntermaskemaskeninfo : tid +
                                                                                                            +
                                                                                                            activeINTEGER1true
                                                                                                            sortnrSMALLINT2falseSortiernr.
                                                                                                            schleifenrelationCHAR255false
                                                                                                            schleifenfeldnameCHAR255false
                                                                                                            aliasCHAR255false(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                            schleifenfstandCHAR255false
                                                                                                            schleifenfsichtCHAR255false
                                                                                                            aktionCHAR255false(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                            +

                                                                                                            Primärschlüssel c2_macro_masken_bez +

                                                                                                            +
                                                                                                              +
                                                                                                            1. maskeninfo_id1
                                                                                                            2. +
                                                                                                            +
                                                                                                              +
                                                                                                            1. maskeninfo_id2
                                                                                                            2. +
                                                                                                            +
                                                                                                              +
                                                                                                            1. active
                                                                                                            2. +
                                                                                                            +
                                                                                                              +
                                                                                                            1. sortnr
                                                                                                            2. +
                                                                                                            +
                                                                                                              +
                                                                                                                Wird benutzt in folgenden Masken: +
                                                                                                              +
                                                                                                              +Tabelle maske_system_bez +
                                                                                                              +

                                                                                                              +

                                                                                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                              + + + + + + + + + + +
                                                                                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                              maskeninfo_idINTEGER4truemaskeninfo : tid +
                                                                                                              +
                                                                                                              systeminfo_idINTEGER4truesysteminfo : tid +
                                                                                                              +
                                                                                                              +

                                                                                                              Primärschlüssel c_maske_system_bez +

                                                                                                              +
                                                                                                                +
                                                                                                              1. maskeninfo_id
                                                                                                              2. +
                                                                                                              +
                                                                                                                +
                                                                                                              1. systeminfo_id
                                                                                                              2. +
                                                                                                              +
                                                                                                                +
                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                +
                                                                                                                +Tabelle masken_felder_bez +
                                                                                                                +

                                                                                                                +

                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                + + + + + + + + + + +
                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                maskeninfo_idINTEGER4falseMasken IDmaskeninfo : tid +
                                                                                                                +
                                                                                                                felderinfo_idINTEGER4falseFeld IDfelderinfo : tid +
                                                                                                                +
                                                                                                                +

                                                                                                                Primärschlüssel c_masken_felder_bez +

                                                                                                                +
                                                                                                                  +
                                                                                                                1. felderinfo_id
                                                                                                                2. +
                                                                                                                +
                                                                                                                  +
                                                                                                                1. maskeninfo_id
                                                                                                                2. +
                                                                                                                +
                                                                                                                  +
                                                                                                                    Wird benutzt in folgenden Masken: +
                                                                                                                  +
                                                                                                                  +Tabelle masken_prot_feld +
                                                                                                                  +

                                                                                                                  Protokolltabelle zum nachverfolgen, welche Filter + ausgewählt wurden bei Maskenaufruf

                                                                                                                  +

                                                                                                                  Typ: Datentabelle, Themenbereich: Administration

                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                  tidSERIAL8trueID
                                                                                                                  protokoll_idINTEGER8trueID des Protokolls (masken_protokoll)masken_protokoll : tid +
                                                                                                                  +
                                                                                                                  felderinfo_idINTEGER10trueID des Feldesfelderinfo : tid +
                                                                                                                  +
                                                                                                                  wertVARCHAR255trueInhalt des Feldes
                                                                                                                  typeVARCHAR20trueVariablentyp des Feldes
                                                                                                                  captionVARCHAR255falseFeldname
                                                                                                                  +
                                                                                                                    +
                                                                                                                      Wird benutzt in folgenden Masken: +
                                                                                                                    +
                                                                                                                    +Tabelle masken_protokoll +
                                                                                                                    +

                                                                                                                    Protokolltabelle zum nachverfolgen, welche Maske + ausgeführt wurde.

                                                                                                                    +

                                                                                                                    Typ: Datentabelle, Themenbereich: Administration

                                                                                                                    + + + + + + + + + + + + + + + + + + + +
                                                                                                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                    tidSERIAL8trueID
                                                                                                                    maskeninfo_idINTEGER8trueID der Maskemaskeninfo : tid +
                                                                                                                    +
                                                                                                                    user_idINTEGER10trueID des Users, welcher die Maske ausgeführt hatuserinfo : tid +
                                                                                                                    +
                                                                                                                    zeitpunktDATETIME20trueAusführungs Zeitpunkt
                                                                                                                    kommentarVARCHAR255falseKommentar
                                                                                                                    +
                                                                                                                      +
                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                      +
                                                                                                                      +Tabelle masken_statistik +
                                                                                                                      +

                                                                                                                      Log-Tabelle bezüglich Nutzungsdaten der Berichte

                                                                                                                      +

                                                                                                                      Typ: Datentabelle, Themenbereich: Administration

                                                                                                                      + + + + + + + + + + + + + + + + + + + +
                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                      idSERIAL4trueId for Spring Data JDBC
                                                                                                                      tidINTEGER4trueBerichts ID
                                                                                                                      counterINTEGER4false
                                                                                                                      first_callDATEfalse
                                                                                                                      last_callDATEfalse
                                                                                                                      +

                                                                                                                      Primärschlüssel masken_statistik_id +

                                                                                                                      +
                                                                                                                        +
                                                                                                                      1. id
                                                                                                                      2. +
                                                                                                                      +
                                                                                                                        +
                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                        +
                                                                                                                        +Tabelle maskeninfo +
                                                                                                                        +

                                                                                                                        +

                                                                                                                        Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                        tidINTEGER4true
                                                                                                                        nameCHAR255trueName der Maske
                                                                                                                        select_stmttextfalseSelect-Statement
                                                                                                                        xil_proplisttextfalseSpaltenlayout
                                                                                                                        chart_xtitelCHAR50false(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                        chart_ytitelCHAR50false(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                        erlaeuterungCHAR255falseErläuterung
                                                                                                                        cleanup_stmtCHAR240falseCleanup Statements
                                                                                                                        default_fileCHAR200false(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                        frontendSMALLINT2falseSpezielles FrontendApplet=0, 1=Themenbaum_vom_XML-Frontend, 2=Alle, 3=XML_und_Angular, 4=Nur_Angularmenu_element : element +
                                                                                                                        val(element_value) : +frontend
                                                                                                                        +
                                                                                                                        breiteINTEGER4false(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                        hoeheINTEGER4false(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                        ampelSMALLINT2false(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                        hilfeSMALLINT2falseHilfe-Button (Applet)(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                        hinweistextfalseHinweistext
                                                                                                                        +

                                                                                                                        Primärschlüssel c_maskeninfo +

                                                                                                                        +
                                                                                                                          +
                                                                                                                        1. tid
                                                                                                                        2. +
                                                                                                                        +
                                                                                                                          +
                                                                                                                            Wird benutzt in folgenden Masken: +
                                                                                                                          +
                                                                                                                          +Tabelle menu_element +
                                                                                                                          +

                                                                                                                          +

                                                                                                                          Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                          idINTEGER4true
                                                                                                                          elementVARCHAR255false
                                                                                                                          element_valueVARCHAR255false
                                                                                                                          descriptionVARCHAR255false
                                                                                                                          natureVARCHAR255false
                                                                                                                          annotationVARCHAR255false
                                                                                                                          +

                                                                                                                          Primärschlüssel c_menu_element +

                                                                                                                          +
                                                                                                                            +
                                                                                                                          1. id
                                                                                                                          2. +
                                                                                                                          +
                                                                                                                            +
                                                                                                                              Wird benutzt in folgenden Masken: +
                                                                                                                            +
                                                                                                                            +Tabelle mondrian_schema +
                                                                                                                            +

                                                                                                                            Tabelle mit den Versionen des Mondrian XML-Schema +

                                                                                                                            +

                                                                                                                            Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                            idSERIAL
                                                                                                                            schemaTEXT
                                                                                                                            original_schemaTEXT
                                                                                                                            customizationTEXT
                                                                                                                            createdDATETIME
                                                                                                                            nodeVARCHAR255
                                                                                                                            +

                                                                                                                            Primärschlüssel pk_mondrian_schema +

                                                                                                                            +
                                                                                                                              +
                                                                                                                            1. id
                                                                                                                            2. +
                                                                                                                            +
                                                                                                                              +
                                                                                                                                Wird benutzt in folgenden Masken: +
                                                                                                                              +
                                                                                                                              +Tabelle nachricht +
                                                                                                                              +

                                                                                                                              +

                                                                                                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                              + + + + + + + +
                                                                                                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                              aktuellCHAR255false
                                                                                                                              +
                                                                                                                                +
                                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                                +
                                                                                                                                +Tabelle organigramm +
                                                                                                                                +

                                                                                                                                +

                                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                tidSERIAL4trueTupelidentifier
                                                                                                                                key_apnrCHAR10falseSchlüssel
                                                                                                                                parentCHAR10falseÜbergeordneter Knoten im Baumorganigramm : key_apnr +
                                                                                                                                +
                                                                                                                                drucktextVARCHAR255falseDrucktext
                                                                                                                                nameVARCHAR255falseName
                                                                                                                                ebeneINTEGER4falseEbene im Baum
                                                                                                                                lehreSMALLINT2trueLehre (1=ja)
                                                                                                                                gueltig_seitDATE4trueGültig von
                                                                                                                                gueltig_bisDATE4trueGültig bis
                                                                                                                                orgstrukturINTEGER4falseStrukturmerkmalgem. COB-GX:30=Lehreinheit,20=Fakultätmenu_element_orgstructure : orgstruktur +
                                                                                                                                +
                                                                                                                                lidVARCHAR255falseLanglebige ID
                                                                                                                                parent_lidVARCHAR255falseÜbergeordnete langlebige ID
                                                                                                                                uniquenameVARCHAR255falseEindeutiger Name/Schlüssel bei GX
                                                                                                                                sourcesystemINTEGERfalseQuellsystem(referenziert BI-Tabelle cifx mit key=1)
                                                                                                                                sourcesystem_idVARCHAR255falseID im Quellsystem
                                                                                                                                systeminfo_idINTEGERfalseBI-Komponentez.B. 10=Kostenrechnung,3=MBS vergl. BI-Tabelle systeminfo
                                                                                                                                nodeattribSMALLINTfalseAttribut (1=verstecken)
                                                                                                                                +
                                                                                                                                  +
                                                                                                                                • Index: unique i_orga auf organigramm (key_apnr, +gueltig_seit, +gueltig_bis ); +
                                                                                                                                • +
                                                                                                                                • Index: ix130_3 auf organigramm (parent ); +
                                                                                                                                • +
                                                                                                                                +
                                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                                +
                                                                                                                                +Tabelle organigramm_bak +
                                                                                                                                +

                                                                                                                                +

                                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                tidINTEGER4trueTupelidentifier
                                                                                                                                key_apnrCHAR10falseSchlüssel
                                                                                                                                parentCHAR10falseÜbergeordneter Knoten im Baum
                                                                                                                                drucktextVARCHAR255falseDrucktext
                                                                                                                                nameVARCHAR255falseName
                                                                                                                                ebeneINTEGER4falseEbene im Baum
                                                                                                                                lehreSMALLINT2trueLehre (1=ja)
                                                                                                                                gueltig_seitDATE4trueGültig von
                                                                                                                                gueltig_bisDATE4trueGültig bis
                                                                                                                                orgstrukturINTEGER4falseStrukturmerkmalgem. COB-GX:30=Lehreinheit,20=Fakultät
                                                                                                                                lidVARCHAR255falseLanglebige ID
                                                                                                                                parent_lidVARCHAR255falseÜbergeordnete langlebige ID
                                                                                                                                uniquenameVARCHAR255falseEindeutiger Name/Schlüssel bei GX
                                                                                                                                sourcesystemINTEGERfalseQuellsystem(referenziert BI-Tabelle cifx mit key=1)
                                                                                                                                sourcesystem_idVARCHAR255falseID im Quellsystem
                                                                                                                                systeminfo_idINTEGERfalseBI-Komponentez.B. 10=Kostenrechnung,3=MBS vergl. BI-Tabelle systeminfo
                                                                                                                                nodeattribSMALLINTfalseAttribut (1=verstecken)
                                                                                                                                +
                                                                                                                                  +
                                                                                                                                • Index: unique i_orga_bak auf organigramm_bak (key_apnr, +gueltig_seit, +gueltig_bis ); +
                                                                                                                                • +
                                                                                                                                +
                                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                                +
                                                                                                                                +Tabelle orgunit_mapping +
                                                                                                                                +

                                                                                                                                Schlüsseltabelle für LiveMapping

                                                                                                                                +

                                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                + + + + + + + + + + + + + + + + +
                                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                apnrVARCHAR255Quelle: cifx.apnr (key 110 sourcesystem 6 His)
                                                                                                                                mapped_idVARCHAR255Varianten apnr
                                                                                                                                uniquenameVARCHAR255truezugehöriger uniquename
                                                                                                                                lidVARCHAR255lid
                                                                                                                                +
                                                                                                                                  +
                                                                                                                                    Wird benutzt in folgenden Masken: +
                                                                                                                                  +
                                                                                                                                  +Tabelle personattribute (Personattribute) +
                                                                                                                                  +

                                                                                                                                  Erweiterungstabelle für Personen um weitere Attribute

                                                                                                                                  +

                                                                                                                                  Typ: Datentabelle, Themenbereich: Studierende

                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                  person_idINTEGER10true
                                                                                                                                  matrikel_nrINTEGER12true
                                                                                                                                  systeminfo_idINTEGER0trueSysteminfoQuerverweis zur Systeminfo
                                                                                                                                  personattributetype_idINTEGER10true
                                                                                                                                  attributevalueVARCHAR255falseValue
                                                                                                                                  valid_fromDATEfalse
                                                                                                                                  valid_toDATEfalse
                                                                                                                                  semester_vonINTEGER10false
                                                                                                                                  semester_bisINTEGER10false
                                                                                                                                  +
                                                                                                                                    +
                                                                                                                                      Wird benutzt in folgenden Masken: +
                                                                                                                                    +
                                                                                                                                    +Tabelle personattribute_neu (Personattribute_Neu) +
                                                                                                                                    +

                                                                                                                                    Erweiterungstabelle für Personen um weitere Attribute

                                                                                                                                    +

                                                                                                                                    Typ: Datentabelle, Themenbereich: Studierende

                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                    idINTEGER10true
                                                                                                                                    person_idINTEGER10true
                                                                                                                                    matrikel_nrINTEGER12true
                                                                                                                                    systeminfo_idINTEGER0trueSysteminfoQuerverweis zur Systeminfo
                                                                                                                                    personattributetype_idINTEGER10true
                                                                                                                                    attributevalueVARCHAR255falseValue
                                                                                                                                    valid_fromDATEfalse
                                                                                                                                    valid_toDATEfalse
                                                                                                                                    semester_vonINTEGER10false
                                                                                                                                    semester_bisINTEGER10false
                                                                                                                                    +
                                                                                                                                      +
                                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                                      +
                                                                                                                                      +Tabelle personattribute_value_list +
                                                                                                                                      +

                                                                                                                                      Tabelle für Attributausprägungen

                                                                                                                                      +

                                                                                                                                      Typ: Datentabelle, Themenbereich: Studierende

                                                                                                                                      + + + + + + + + + + + + + + + + + + + +
                                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                      personattributetype_idINTEGER10true
                                                                                                                                      attributevalueVARCHAR255falseValue
                                                                                                                                      shorttextVARCHAR255falseValue
                                                                                                                                      defaulttextVARCHAR255falseValue
                                                                                                                                      longtextVARCHAR255falseValue
                                                                                                                                      +
                                                                                                                                        +
                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                        +
                                                                                                                                        +Tabelle personattributetype +
                                                                                                                                        +

                                                                                                                                        Tabelle für Attributerweiterungen

                                                                                                                                        +

                                                                                                                                        Typ: Datentabelle, Themenbereich: Studierende

                                                                                                                                        + + + + + + + + + + +
                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                        personattributetype_idINTEGER10true
                                                                                                                                        attributevalueVARCHAR255falseValue
                                                                                                                                        +
                                                                                                                                          +
                                                                                                                                            Wird benutzt in folgenden Masken: +
                                                                                                                                          +
                                                                                                                                          +Tabelle proto_funktion +
                                                                                                                                          +

                                                                                                                                          +

                                                                                                                                          Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                          + + + + + + + + + + +
                                                                                                                                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                          proto_fkt_idSMALLINT2true
                                                                                                                                          proto_fktCHAR20true
                                                                                                                                          +

                                                                                                                                          Primärschlüssel c_proto_fkt +

                                                                                                                                          +
                                                                                                                                            +
                                                                                                                                          1. proto_fkt_id
                                                                                                                                          2. +
                                                                                                                                          +
                                                                                                                                            +
                                                                                                                                              Wird benutzt in folgenden Masken: +
                                                                                                                                            +
                                                                                                                                            +Tabelle protokoll +
                                                                                                                                            +

                                                                                                                                            +

                                                                                                                                            Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                            protokoll_idSERIAL4true
                                                                                                                                            proto_fkt_idSMALLINT2trueproto_funktion : proto_fkt_id +
                                                                                                                                            +
                                                                                                                                            userinfo_idINTEGER4trueuserinfo : tid +
                                                                                                                                            +userinfo : tid +
                                                                                                                                            +userinfo : tid +
                                                                                                                                            +
                                                                                                                                            ip_adresseCHAR16true
                                                                                                                                            client_nameVARCHAR255true
                                                                                                                                            zeitpunktDATETIME3594true
                                                                                                                                            kommentarVARCHAR255
                                                                                                                                            +

                                                                                                                                            Primärschlüssel c_protokoll +

                                                                                                                                            +
                                                                                                                                              +
                                                                                                                                            1. protokoll_id
                                                                                                                                            2. +
                                                                                                                                            +
                                                                                                                                              +
                                                                                                                                                Wird benutzt in folgenden Masken: +
                                                                                                                                              +
                                                                                                                                              +Tabelle sachgeb_dbform_bez +
                                                                                                                                              +

                                                                                                                                              +

                                                                                                                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                              + + + + + + + + + + +
                                                                                                                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                              sachgebiete_idINTEGER4false
                                                                                                                                              dbform_idINTEGER4false
                                                                                                                                              +

                                                                                                                                              Primärschlüssel c_sachgeb_dbform_bez +

                                                                                                                                              +
                                                                                                                                                +
                                                                                                                                              1. dbform_id
                                                                                                                                              2. +
                                                                                                                                              +
                                                                                                                                                +
                                                                                                                                              1. sachgebiete_id
                                                                                                                                              2. +
                                                                                                                                              +
                                                                                                                                                +
                                                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                                                +
                                                                                                                                                +Tabelle sachgeb_maske_bez +
                                                                                                                                                +

                                                                                                                                                +

                                                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                + + + + + + + + + + +
                                                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                sachgebiete_idINTEGER4falsesachgebiete : tid +
                                                                                                                                                +
                                                                                                                                                maskeninfo_idINTEGER4falsemaskeninfo : tid +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                Primärschlüssel c_sachgeb_maske_bez +

                                                                                                                                                +
                                                                                                                                                  +
                                                                                                                                                1. maskeninfo_id
                                                                                                                                                2. +
                                                                                                                                                +
                                                                                                                                                  +
                                                                                                                                                1. sachgebiete_id
                                                                                                                                                2. +
                                                                                                                                                +
                                                                                                                                                  +
                                                                                                                                                    Wird benutzt in folgenden Masken: +
                                                                                                                                                  +
                                                                                                                                                  +Tabelle sachgeb_sichtarten +
                                                                                                                                                  +

                                                                                                                                                  +

                                                                                                                                                  Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                  + + + + + + + + + + +
                                                                                                                                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                  sachgebiete_idINTEGERfalsesachgebiete : tid +
                                                                                                                                                  +
                                                                                                                                                  sichtartCHAR255falseRechte für eine Art von Sichten geben
                                                                                                                                                  +

                                                                                                                                                  Primärschlüssel pk_sg_sichtart +

                                                                                                                                                  +
                                                                                                                                                    +
                                                                                                                                                  1. sachgebiete_id
                                                                                                                                                  2. +
                                                                                                                                                  +
                                                                                                                                                    +
                                                                                                                                                  1. sichtart
                                                                                                                                                  2. +
                                                                                                                                                  +
                                                                                                                                                    +
                                                                                                                                                      Wird benutzt in folgenden Masken: +
                                                                                                                                                    +
                                                                                                                                                    +Tabelle sachgeb_sichten +
                                                                                                                                                    +

                                                                                                                                                    +

                                                                                                                                                    Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                    + + + + + + + + + + +
                                                                                                                                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                    sachgebiete_idINTEGERfalsesachgebiete : tid +
                                                                                                                                                    +
                                                                                                                                                    sicht_name_internCHAR200falseRechte für eine einzelne Sicht gebensichten : name_intern +
                                                                                                                                                    +
                                                                                                                                                    +

                                                                                                                                                    Primärschlüssel pk_sg_sicht +

                                                                                                                                                    +
                                                                                                                                                      +
                                                                                                                                                    1. sachgebiete_id
                                                                                                                                                    2. +
                                                                                                                                                    +
                                                                                                                                                      +
                                                                                                                                                    1. sicht_name_intern
                                                                                                                                                    2. +
                                                                                                                                                    +
                                                                                                                                                      +
                                                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                                                      +
                                                                                                                                                      +Tabelle sachgebiete +
                                                                                                                                                      +

                                                                                                                                                      +

                                                                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                      tidINTEGER4false
                                                                                                                                                      nameCHAR50false
                                                                                                                                                      rightnameVARCHAR255falseRechtename in HIS1, das diesem Sachgebiet entspricht
                                                                                                                                                      +

                                                                                                                                                      Primärschlüssel c_sachgebiete +

                                                                                                                                                      +
                                                                                                                                                        +
                                                                                                                                                      1. tid
                                                                                                                                                      2. +
                                                                                                                                                      +
                                                                                                                                                        +
                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                        +
                                                                                                                                                        +Tabelle sichtart_rechttabelle +
                                                                                                                                                        +

                                                                                                                                                        +

                                                                                                                                                        Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                        tidserialLaufnummer
                                                                                                                                                        artVARCHAR40false
                                                                                                                                                        tabelleVARCHAR40false
                                                                                                                                                        feldnameVARCHAR40false
                                                                                                                                                        additionalkeyssqlvarchar255falseSQL für zusätzliche berechtigte Schlüssel
                                                                                                                                                        fallback_user_instchar10falseFallback zu user-InstitutionWenn der jew. User keine sichtartspez. Rechte hat, gibt es einen Fallback zur normalen user_institution (1=ja, 0=nein)
                                                                                                                                                        +

                                                                                                                                                        Primärschlüssel ix_sichtart_rt_p1 +

                                                                                                                                                        +
                                                                                                                                                          +
                                                                                                                                                        1. tid
                                                                                                                                                        2. +
                                                                                                                                                        +
                                                                                                                                                          +
                                                                                                                                                            Wird benutzt in folgenden Masken: +
                                                                                                                                                          +
                                                                                                                                                          +Tabelle sichten (Sichten) +
                                                                                                                                                          +

                                                                                                                                                          Sichten

                                                                                                                                                          +

                                                                                                                                                          Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                          tidSERIAL4true
                                                                                                                                                          parentCHAR255falseÜbergeordnete SichtUm zukünftig evtl. Hierarchien von Sichten abzubilden + (Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                          systeminfoidINTEGER0trueKomponenteQuerverweis zur Systeminfosysteminfo : tid +
                                                                                                                                                          +
                                                                                                                                                          artCHAR40falseSichtart
                                                                                                                                                          typeINTEGER10trueSicht-Typ10 ist standardsicht, 20 ist alt.Hierarchie
                                                                                                                                                          name_internCHAR200falseInterner NameEs kann eine Kurzbeschreibung für interne Zwecke + hinterlegt werden
                                                                                                                                                          nameCHAR200falseNameBezeichnung der Sicht, die für User angezeigt wird +
                                                                                                                                                          beschreibungCHAR255falseBeschreibung
                                                                                                                                                          sortnrINTEGER0trueSortiernummerkann für Sortierungen benutzt werden
                                                                                                                                                          quelleTEXT255falseQuelleAngabe einer Tabelle mit + key,parent,name,gueltig_seit,gueltig_bis oder Prozedur, die mit + sp_ anfängt
                                                                                                                                                          alt_hier_idCHAR150falseAlternat. Hierarchie ID (COB)id der alt.Hier in angegebenen Quelltabelle null bei + regulärer Hierarchie
                                                                                                                                                          treecfgtableCHAR255falseAlternat. Hier. Tree-Cfg (COB)Tabelle mit Infos zu TreeView aus Cob
                                                                                                                                                          treecfgidCHAR150falseAlternat. Hierarchie Tree-ID (COB)id des benutzen trees aus Cob-Tabelle trees null bei + regulärer Hierachie
                                                                                                                                                          labelSMALLINT0truehauptsächl. für alte Organigramm-Sichten, hieß mal lehre + (Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                          user_rechteSMALLINT21truesollen User Rechte berücksichtigt werden, derzeit von + Org.Sichten ausgewertet(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                          rechtequelleCHAR255falsezukünftig für erweiterte Rechtevergabe(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                          sesamkeyCHAR100falsezukünftig für erweiterte Rechtevergabe(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                          standbuttonSMALLINT20trueStandbutton anzeigensoll der Stand geändert werden können
                                                                                                                                                          attribut1CHAR255falseAttribut 1bei Bedarf noch Attribute der Sicht hinterlegt werden, auf + die man bei Bedarf Einschränkungen fahren kann
                                                                                                                                                          attribut2CHAR255falseAttribut 2bei Bedarf noch Attribute der Sicht hinterlegt werden, auf + die man bei Bedarf Einschränkungen fahren kann
                                                                                                                                                          attribut3INTEGERfalseAttribut 3bei Bedarf noch ein Ganzzahl-Attribut der Sicht hinterlegt werden, auf + die man bei Bedarf Einschränkungen fahren kann
                                                                                                                                                          attribut4INTEGERfalseAttribut 4bei Bedarf noch ein Ganzzahl-Attribut der Sicht hinterlegt werden, auf + die man bei Bedarf Einschränkungen fahren kann
                                                                                                                                                          xmlmaxentriesINTEGER4falseMax. Zeilen XMLMax. Zeilen im Klappmenü(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                          gueltig_seitDATE401.01.1900true(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                          gueltig_bisDATE401.01.3000true(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                          cacheappletCHAR255falsesoll Sicht im Applet gecachet werden(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                          cachexmlCHAR255falseSicht Cacheingsoll Sicht im XML-Frontend gecachet werden
                                                                                                                                                          aktivSMALLINT1falseAktiv?
                                                                                                                                                          +

                                                                                                                                                          Primärschlüssel c_sichten30tid +

                                                                                                                                                          +
                                                                                                                                                            +
                                                                                                                                                          1. tid
                                                                                                                                                          2. +
                                                                                                                                                          +
                                                                                                                                                            +
                                                                                                                                                          • Index: unique ix_name_intern auf sichten (name_intern ); +
                                                                                                                                                          • +
                                                                                                                                                          +
                                                                                                                                                            Wird benutzt in folgenden Masken: +
                                                                                                                                                          +
                                                                                                                                                          +Tabelle sieve +
                                                                                                                                                          +

                                                                                                                                                          +

                                                                                                                                                          Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                          tidSERIALtrueid
                                                                                                                                                          nameVARCHAR255trueName
                                                                                                                                                          main_tableVARCHAR50trueHauptquelltabelle
                                                                                                                                                          order_byVARCHAR255falseOrder by Vorlage-Angabe
                                                                                                                                                          sachgebiete_idINTEGERtrueSachgebiets-ID
                                                                                                                                                          systeminfo_idINTEGERtrueSysteminfo-ID
                                                                                                                                                          post_processingTEXTfalseNachbearbeitung nach der Erstellung
                                                                                                                                                          post_insertTEXTfalseZusatz-SQL nach insert bei Ausführung des Datensiebs
                                                                                                                                                          finalizeTEXTfalseZusatz-SQL vor Abschluss-Select bei Ausführung des Datensiebs
                                                                                                                                                          activeSMALLINT1falseAktiv 0/1
                                                                                                                                                          hsnrSMALLINTfalseggfs Hochschulnummer
                                                                                                                                                          +

                                                                                                                                                          Primärschlüssel ix_sieve +

                                                                                                                                                          +
                                                                                                                                                            +
                                                                                                                                                          1. tid
                                                                                                                                                          2. +
                                                                                                                                                          +
                                                                                                                                                            +
                                                                                                                                                              Wird benutzt in folgenden Masken: +
                                                                                                                                                            +
                                                                                                                                                            +Tabelle sieve_column +
                                                                                                                                                            +

                                                                                                                                                            +

                                                                                                                                                            Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                            tidSERIALtrueid
                                                                                                                                                            sieve_idINTEGERfalseID der Sieb-Vorlage
                                                                                                                                                            def_idINTEGERfalseID der Feldervorlage
                                                                                                                                                            in_outputSMALLINT1falseSoll die Spalte ausgegeben werden 0/1
                                                                                                                                                            sortnrINTEGERfalseReihenfolge für die Ausgabe
                                                                                                                                                            activeSMALLINT1falseAktiv 0/1
                                                                                                                                                            +

                                                                                                                                                            Primärschlüssel ix_sieve_column +

                                                                                                                                                            +
                                                                                                                                                              +
                                                                                                                                                            1. tid
                                                                                                                                                            2. +
                                                                                                                                                            +
                                                                                                                                                              +
                                                                                                                                                                Wird benutzt in folgenden Masken: +
                                                                                                                                                              +
                                                                                                                                                              +Tabelle sieve_column_def +
                                                                                                                                                              +

                                                                                                                                                              +

                                                                                                                                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                              tidSERIALtrueid
                                                                                                                                                              m_idVARCHAR255falseLanglebige ID, muss gefüllt sein, wenn Scripte automatisch ersetzen sollen
                                                                                                                                                              bi_tableVARCHAR255falseBI-Tabelle
                                                                                                                                                              columnnameVARCHAR255falseBI-Spalte
                                                                                                                                                              datatypeVARCHAR255falseDatentyp falls nicht aus sx_fields gelesen werden kann
                                                                                                                                                              captionVARCHAR255falseSpaltenüberschrift bei der Ausgabe
                                                                                                                                                              explanationVARCHAR255falseErläuterung der Spalte bei der Ausgabe
                                                                                                                                                              xil_widthSMALLINT30falseBreite Spalte bei der Ausgabe
                                                                                                                                                              lookup_tabVARCHAR255falseLookup-Tabelle
                                                                                                                                                              lookup_joinsourceVARCHAR255falseLookup-Schlüssel Quelle
                                                                                                                                                              lookup_jointargetVARCHAR255falseLookup-Schlüssel Ziel
                                                                                                                                                              lookup_targetVARCHAR255falseLookup-Zielschlüsselfeld
                                                                                                                                                              lookup_condVARCHAR255falsezusätzliche Lookup-Bedingung
                                                                                                                                                              lookup_funcVARCHAR255falseLookup-Funktion
                                                                                                                                                              hinweisVARCHAR255falseopionaler Hinweis
                                                                                                                                                              +

                                                                                                                                                              Primärschlüssel ix_sieve_column_def +

                                                                                                                                                              +
                                                                                                                                                                +
                                                                                                                                                              1. tid
                                                                                                                                                              2. +
                                                                                                                                                              +
                                                                                                                                                                +
                                                                                                                                                              • Index: unique ix_sieve_column_defm auf sieve_column_def (m_id ); +
                                                                                                                                                              • +
                                                                                                                                                              +
                                                                                                                                                                Wird benutzt in folgenden Masken: +
                                                                                                                                                              +
                                                                                                                                                              +Tabelle sieve_field +
                                                                                                                                                              +

                                                                                                                                                              +

                                                                                                                                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                              tidSERIALtrueid
                                                                                                                                                              sieve_idINTEGERtrueID der Sieb-Vorlage
                                                                                                                                                              felderinfo_idINTEGERtrueID der Feldervorlage
                                                                                                                                                              obligatorischSMALLINTtrueSoll das Feld obligatorisch sein - überschreibt Vorlage aus Felderinfo
                                                                                                                                                              nummerINTEGERfalseNummer - überschreibt Vorlage aus Felderinfo
                                                                                                                                                              restriction_maintableTEXTfalseEinschränkung im SQL der Maske auf Haupttabelle
                                                                                                                                                              restriction_othertableTEXTfalseEinschränkung im SQL der Maske auf andere Tabelle
                                                                                                                                                              activeSMALLINT1falseAktiv 0/1
                                                                                                                                                              +

                                                                                                                                                              Primärschlüssel ix_sieve_field +

                                                                                                                                                              +
                                                                                                                                                                +
                                                                                                                                                              1. tid
                                                                                                                                                              2. +
                                                                                                                                                              +
                                                                                                                                                                +
                                                                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                                                                +
                                                                                                                                                                +Tabelle stylesheet_field +
                                                                                                                                                                +

                                                                                                                                                                Zuordnung von Tabellen und Feldern fuer + Datenblattberichte

                                                                                                                                                                +

                                                                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                + + + + + + + + + + + + + + + + +
                                                                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                tidserialTid
                                                                                                                                                                stylesheet_idintegerStylesheetsx_stylesheets : relation +
                                                                                                                                                                tid : +stylesheet_id
                                                                                                                                                                +
                                                                                                                                                                tablenamevarchar255Tabellennamesx_tables : name +
                                                                                                                                                                +sx_fields : name +
                                                                                                                                                                table_name : +tablename
                                                                                                                                                                +
                                                                                                                                                                fieldnamevarchar255Feldnamesx_fields : name +
                                                                                                                                                                table_name : +tablename
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                Primärschlüssel ix_style_feld1 +

                                                                                                                                                                +
                                                                                                                                                                  +
                                                                                                                                                                1. tid
                                                                                                                                                                2. +
                                                                                                                                                                +
                                                                                                                                                                  +
                                                                                                                                                                • Index: ix_style_feld2 auf stylesheet_field (stylesheet_id ); +
                                                                                                                                                                • +
                                                                                                                                                                +
                                                                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                                                                +
                                                                                                                                                                +Tabelle sx_captions (Beschreibungstexte, etc. in der BI pflegen) +
                                                                                                                                                                +

                                                                                                                                                                Felder und Ergebnisparameter über captions anpassen

                                                                                                                                                                +

                                                                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                tidSERIAL4true
                                                                                                                                                                idCHAR200false
                                                                                                                                                                table_nameCHAR200falseTabellenname
                                                                                                                                                                field_nameCHAR200falseFeldname
                                                                                                                                                                record_noINTEGER4falseDatensatz-Nr.
                                                                                                                                                                localeCHAR10falseSprachemenu_element : element +
                                                                                                                                                                element_value::char(10) : +locale
                                                                                                                                                                +
                                                                                                                                                                contents_shortCHAR255falseBeschriftung (kurz)
                                                                                                                                                                contents_longtextfalseBeschriftung (lang)Bei Maskenfeldern wird dieses Feld für Tooltips genutzt.
                                                                                                                                                                equalitystatusSMALLINT2false
                                                                                                                                                                sachgebiete_idINTEGER2falseSachgebietsachgebiete : tid +
                                                                                                                                                                +
                                                                                                                                                                doku_linkVARCHAR255falseLink zur Dokumentation
                                                                                                                                                                export_to_glossarINTEGER2falseExport des Eintrags in das Glossar (J=1, N=0)
                                                                                                                                                                +

                                                                                                                                                                Primärschlüssel c_sx_captions +

                                                                                                                                                                +
                                                                                                                                                                  +
                                                                                                                                                                1. tid
                                                                                                                                                                2. +
                                                                                                                                                                +
                                                                                                                                                                  +
                                                                                                                                                                • Index: ix_sx_captions auf sx_captions (field_name ); +
                                                                                                                                                                • +
                                                                                                                                                                • Index: ix_sx_captions2 auf sx_captions (table_name ); +
                                                                                                                                                                • +
                                                                                                                                                                • Index: ix_sx_captions3 auf sx_captions (record_no ); +
                                                                                                                                                                • +
                                                                                                                                                                • Index: ix_sx_captions4 auf sx_captions (locale ); +
                                                                                                                                                                • +
                                                                                                                                                                +
                                                                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                                                                +
                                                                                                                                                                +Tabelle sx_downloads +
                                                                                                                                                                +

                                                                                                                                                                Download-Adressen

                                                                                                                                                                +

                                                                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                tidSERIAL4true
                                                                                                                                                                nameCHAR255falseName
                                                                                                                                                                ch110_institutCHAR10falseZugehörige Kostenstelleorganigramm : key_apnr +
                                                                                                                                                                +
                                                                                                                                                                bezugsdatumDATE2falseBezugsdatumWorauf bezieht sich der Download (für Ermittlung + Bezugsjahr,- Monat oder Sem.)
                                                                                                                                                                importdatumDATE2falseImportdatumDatum des Imports in die SuperX-Datenbank
                                                                                                                                                                kommentarTEXT20000falseKommentarKommentar für Website (Datenlegende o.ä.).
                                                                                                                                                                kommentar_urlCHAR255falseHyperlink zu Kommentar-SiteVerweis auf umfangreichere Anleitungen und Kommentare, + beginnend mit http:// oder relativ zu + http://superx-server:Port/superx/servlet
                                                                                                                                                                contenttypeVARCHAR255falseMimeTypeMime-Type der Datei (für pdf z.B. application/pdf, html + etc).
                                                                                                                                                                dateiDISKBLOB255trueDatei Pfad zur Datei (relativ zu webapps/superx/WEB-INF/) +
                                                                                                                                                                gueltig_seitDATE101.01.1900trueGültig von
                                                                                                                                                                gueltig_bisDATE101.01.3000trueGültig bis
                                                                                                                                                                +

                                                                                                                                                                Primärschlüssel pk_sx_downloads +

                                                                                                                                                                +
                                                                                                                                                                  +
                                                                                                                                                                1. tid
                                                                                                                                                                2. +
                                                                                                                                                                +
                                                                                                                                                                  +
                                                                                                                                                                • Index: ix_sx_down_inst auf sx_downloads (ch110_institut ); +
                                                                                                                                                                • +
                                                                                                                                                                • Index: ix_sx_down_dbat auf sx_downloads (bezugsdatum, +gueltig_seit, +gueltig_bis ); +
                                                                                                                                                                • +
                                                                                                                                                                +
                                                                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                                                                +
                                                                                                                                                                +Tabelle sx_fields (Felder von SuperX-Tabellen) +
                                                                                                                                                                +

                                                                                                                                                                +

                                                                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                tidSERIAL4trueLaufnummer
                                                                                                                                                                table_nameVARCHAR255trueTabelle
                                                                                                                                                                nameVARCHAR255trueFeldname
                                                                                                                                                                captionVARCHAR255falseBeschriftung
                                                                                                                                                                descriptionVARCHAR255falseBeschreibung
                                                                                                                                                                field_typeVARCHAR255trueTyp
                                                                                                                                                                field_sizeVARCHAR255falseGroesse
                                                                                                                                                                field_not_nullSMALLINT2falseNot Null1=true
                                                                                                                                                                currentlyusedSMALLINT2falsederzeit benutzt1=ja, 0=nein
                                                                                                                                                                is_primarykeySMALLINT20falsePrimärschlüssel1=ja, 0=nein
                                                                                                                                                                foreignkey_tabVARCHAR255falseFremdschlüssel Tabelle
                                                                                                                                                                foreignkey_colVARCHAR255falseFremdschlüssel Feld (Schlüssel)
                                                                                                                                                                foreignkey_intVARCHAR255falseFremdschlüssel Feld (Ganzzahl-Schlüssel)Für Ganzzahl-Transformation ICE
                                                                                                                                                                foreignkey_capVARCHAR255falseFremdschlüssel Feld (Bezeichnung)
                                                                                                                                                                foreignkey_condVARCHAR255falseZusätzliche Bedingung für Fremdschlüssel
                                                                                                                                                                foreignkey_funcVARCHAR255falseZusätzliche Funktion für Fremdschlüssel
                                                                                                                                                                check_integritySMALLINT10falseSoll das Feld in ETL-Routine geprüft werden1=ja, 0=nein. Wird beim CSV-Upload ausgewertet.
                                                                                                                                                                is_sumSMALLINT11falseIst das Feld summierbar?1=ja, 0=nein. Das Feld Semester ist z.B. nicht summierbar, + das Feld Geschlecht schon (für ICE Ausprägung alle)
                                                                                                                                                                foreignkey_uniquenameVARCHAR255falseSchlüsselanzeige für Fremdschlüssel
                                                                                                                                                                +

                                                                                                                                                                Primärschlüssel pk_sx_fields +

                                                                                                                                                                +
                                                                                                                                                                  +
                                                                                                                                                                1. tid
                                                                                                                                                                2. +
                                                                                                                                                                +
                                                                                                                                                                  +
                                                                                                                                                                    Wird benutzt in folgenden Masken: +
                                                                                                                                                                  +
                                                                                                                                                                  +Tabelle sx_jobs +
                                                                                                                                                                  +

                                                                                                                                                                  Schlüsseltabelle für KettleJobs

                                                                                                                                                                  +

                                                                                                                                                                  Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                  tidSERIALtruetid
                                                                                                                                                                  uniquenameVARCHAR255Unique Name
                                                                                                                                                                  captionVARCHAR255Bezeichnung
                                                                                                                                                                  filepathVARCHAR255truePfad zur Datei
                                                                                                                                                                  sachgebiete_idINTEGER0trueSachgebietsachgebiete : tid +
                                                                                                                                                                  +
                                                                                                                                                                  kenn_profilINTEGEROptional: Kenn-Profil
                                                                                                                                                                  hs_nrINTEGEROptional: Hochschulnummer
                                                                                                                                                                  modus_supportedSMALLINT0Modus unterstützt?
                                                                                                                                                                  paramsVARCHAR255optionale Parameter
                                                                                                                                                                  check_sqlTEXT2000optionaler Prüf-SQL
                                                                                                                                                                  +

                                                                                                                                                                  Primärschlüssel ix_sx_jobs_pk +

                                                                                                                                                                  +
                                                                                                                                                                    +
                                                                                                                                                                  1. tid
                                                                                                                                                                  2. +
                                                                                                                                                                  +
                                                                                                                                                                    +
                                                                                                                                                                  • Index: unique ix_sx_jobs_un auf sx_jobs (uniquename ); +
                                                                                                                                                                  • +
                                                                                                                                                                  +
                                                                                                                                                                    Wird benutzt in folgenden Masken: +
                                                                                                                                                                  +
                                                                                                                                                                  +Tabelle sx_keywords +
                                                                                                                                                                  +

                                                                                                                                                                  Stichwörter für Download-Adressen

                                                                                                                                                                  +

                                                                                                                                                                  Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                  tidSERIAL4falseTupelidentifier
                                                                                                                                                                  nameCHAR255falseStichwort
                                                                                                                                                                  parentINTEGER4falseÜbergeordnetes StichwortWird derzeit noch nicht ausgewertet.
                                                                                                                                                                  +

                                                                                                                                                                  Primärschlüssel c_sx_keywords +

                                                                                                                                                                  +
                                                                                                                                                                    +
                                                                                                                                                                  1. tid
                                                                                                                                                                  2. +
                                                                                                                                                                  +
                                                                                                                                                                    +
                                                                                                                                                                      Wird benutzt in folgenden Masken: +
                                                                                                                                                                    +
                                                                                                                                                                    +Tabelle sx_mail +
                                                                                                                                                                    +

                                                                                                                                                                    Mailaccount

                                                                                                                                                                    +

                                                                                                                                                                    Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                    tidSERIALtruetid
                                                                                                                                                                    pop3_hostVARCHAR255pop3 host
                                                                                                                                                                    pop3_portSMALLINTpop3 port
                                                                                                                                                                    pop3_starttls_enableSMALLINT0/1
                                                                                                                                                                    smtp_hostVARCHAR255pop3 host
                                                                                                                                                                    smtp_portSMALLINTsmtp port
                                                                                                                                                                    smtp_authSMALLINT0/1
                                                                                                                                                                    smtp_starttls_enableSMALLINT0/1
                                                                                                                                                                    usernameVARCHAR255user
                                                                                                                                                                    passwordVARCHAR255password
                                                                                                                                                                    userinfo_idINTEGERggfs. verknüpfte userinfo.tid
                                                                                                                                                                    typeVARCHAR255Es können bestimmte Typen von Mailaccounts definiert werden
                                                                                                                                                                    daemon1VARCHAR255Ein Daemon, der INBOX beobachten soll z.B. de.memtext.hbt.CreationCheckerwird per Reflection aufgerufen
                                                                                                                                                                    daemon1_intervalINTEGERDie Anzahl von Sekunden nach denen Daemon1 aktiv werden soll
                                                                                                                                                                    daemon1_loglevelVARCHAR255zukünftig LogLevel für Daemon1
                                                                                                                                                                    daemon2VARCHAR255Ein Daemon, der INBOX beobachten soll z.B. de.memtext.hbt.CreationCheckerwird per Reflection aufgerufen
                                                                                                                                                                    daemon2_intervalINTEGERDie Anzahl von Sekunden nach denen Daemon2 aktiv werden soll
                                                                                                                                                                    daemon3VARCHAR255Ein Daemon, der INBOX beobachten soll z.B. de.memtext.hbt.CreationCheckerwird per Reflection aufgerufen
                                                                                                                                                                    daemon3_intervalINTEGERDie Anzahl von Sekunden nach denen Daemon3 aktiv werden soll
                                                                                                                                                                    +
                                                                                                                                                                      +
                                                                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                                                                      +
                                                                                                                                                                      +Tabelle sx_mask_style +
                                                                                                                                                                      +

                                                                                                                                                                      +

                                                                                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                      + + + + + + + + + + + + + + + + +
                                                                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                      tidSERIAL4trueLaufnummer
                                                                                                                                                                      maskeninfo_idINTEGER4falseTid der Maskemaskeninfo : tid +
                                                                                                                                                                      +
                                                                                                                                                                      stylesheet_idINTEGER4falseTid des Stylesheetssx_stylesheets : tid +
                                                                                                                                                                      +
                                                                                                                                                                      ordSMALLINT2falseSortiernummerDas Stylesheet mit der kleinsten Nummer wird zuerst + aufgerufen
                                                                                                                                                                      +

                                                                                                                                                                      Primärschlüssel c_mask_style +

                                                                                                                                                                      +
                                                                                                                                                                        +
                                                                                                                                                                      1. tid
                                                                                                                                                                      2. +
                                                                                                                                                                      +
                                                                                                                                                                        +
                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                        +
                                                                                                                                                                        +Tabelle sx_portlet +
                                                                                                                                                                        +

                                                                                                                                                                        Tabelle für Portlets

                                                                                                                                                                        +

                                                                                                                                                                        Typ: Datentabelle, Themenbereich: Administration

                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                        tidSERIAL4trueFeld ID
                                                                                                                                                                        nameVARCHAR255falseName des Portlets
                                                                                                                                                                        typeVARCHAR255falseBegrüßungstext HTML, oder Wiki?
                                                                                                                                                                        classVARCHAR255falseCSS-class für Portlets"green" oder "red"
                                                                                                                                                                        iconVARCHAR255falseIcon für Portletsz.B. "icon-user-plus" oder "icon-help-circled"
                                                                                                                                                                        contentTEXTfalseInhalt
                                                                                                                                                                        sortnr_initialINTEGER4falseReihenfolge.
                                                                                                                                                                        visibleVARCHAR255falseSichtbarfalse=wird nicht ausgegeben, all=auch nicht angemeldete Personen sehen das Portlet.
                                                                                                                                                                        gueltig_vonDATE401.01.1900trueStart der Gültigkeit
                                                                                                                                                                        gueltig_bisDATE401.01.3000trueEnde der Gültigkeit
                                                                                                                                                                        +

                                                                                                                                                                        Primärschlüssel c_sx_portlet +

                                                                                                                                                                        +
                                                                                                                                                                          +
                                                                                                                                                                        1. tid
                                                                                                                                                                        2. +
                                                                                                                                                                        +
                                                                                                                                                                          +
                                                                                                                                                                            Wird benutzt in folgenden Masken: +
                                                                                                                                                                          +
                                                                                                                                                                          +Tabelle sx_repository (Hochschulrepository) +
                                                                                                                                                                          +

                                                                                                                                                                          Hochschulspezifische Variablen und Filter

                                                                                                                                                                          +

                                                                                                                                                                          Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                          tidSERIAL4true
                                                                                                                                                                          idCHAR200trueVariablennameDer Variablenname wird in Freemarker-Scripten, beginnend + mit Modulname-_..., z.B. SVA_Technisches_Personal
                                                                                                                                                                          contentTEXT200falseInhalt der Variable
                                                                                                                                                                          captionCHAR200falseBeschriftung (kurz)
                                                                                                                                                                          commentTEXT4falseKommentar/Anleitung
                                                                                                                                                                          versionSMALLINT10falseFM-Version
                                                                                                                                                                          artCHAR200falseArt der Variable
                                                                                                                                                                          art2CHAR200falseArt der Variable (2)(Für weitere Gruppierungsebenen)
                                                                                                                                                                          art3CHAR200falseArt der Variable (3) (Für noch weitere Gruppierungsebenen)
                                                                                                                                                                          sachgebiete_idINTEGER2falseSachgebietsachgebiete : tid +
                                                                                                                                                                          +
                                                                                                                                                                          sort1INTEGER2falseSortierschlüssel 1
                                                                                                                                                                          sort2INTEGER2falseSortierschlüssel 2
                                                                                                                                                                          sort3INTEGER2falseSortierschlüssel 3
                                                                                                                                                                          geaendert_amDATE4falseDatum letzte Änderung
                                                                                                                                                                          aktivSMALLINT2falseAktiv (1,0)
                                                                                                                                                                          gueltig_seitDATE101.01.1900trueGültig von
                                                                                                                                                                          gueltig_bisDATE101.01.3000trueGültig bis
                                                                                                                                                                          +

                                                                                                                                                                          Primärschlüssel pk_sx_repository +

                                                                                                                                                                          +
                                                                                                                                                                            +
                                                                                                                                                                          1. tid
                                                                                                                                                                          2. +
                                                                                                                                                                          +
                                                                                                                                                                            +
                                                                                                                                                                              Wird benutzt in folgenden Masken: +
                                                                                                                                                                            +
                                                                                                                                                                            +Tabelle sx_stylesheet_param +
                                                                                                                                                                            +

                                                                                                                                                                            +

                                                                                                                                                                            Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                            tidSERIAL4trueLaufnummer
                                                                                                                                                                            stylesheet_idINTEGER4trueTid des Stylesheetssx_stylesheets : tid +
                                                                                                                                                                            +
                                                                                                                                                                            param_nameVARCHAR255trueName des Paramaters
                                                                                                                                                                            default_valVARCHAR255falseDefault-Wert der Variable
                                                                                                                                                                            descriptionVARCHAR255falseBeschreibung der Variable
                                                                                                                                                                            wertebereichVARCHAR255falseWertebereich
                                                                                                                                                                            +

                                                                                                                                                                            Primärschlüssel c_stylesheet_param +

                                                                                                                                                                            +
                                                                                                                                                                              +
                                                                                                                                                                            1. tid
                                                                                                                                                                            2. +
                                                                                                                                                                            +
                                                                                                                                                                              +
                                                                                                                                                                                Wird benutzt in folgenden Masken: +
                                                                                                                                                                              +
                                                                                                                                                                              +Tabelle sx_stylesheets +
                                                                                                                                                                              +

                                                                                                                                                                              +

                                                                                                                                                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                              tidSERIAL4trueLaufnummer
                                                                                                                                                                              filenameCHAR255falseDateinamePfad und Dateiname. Für XSL-Stylesheets relativ zum + Verzeichnis: webapps/superx/xml, für JasperReports-Templates + relativ zu webapps/superx/WEB-INF/reports
                                                                                                                                                                              captionCHAR255falseBeschriftungwird für Hyperlinks benutzt
                                                                                                                                                                              descriptionCHAR255falseBeschreibung
                                                                                                                                                                              relationCHAR10falseTabelle oder MaskeGilt das Stylesheet für eine Maske oder eine Tabelle. Bei + JasperReports-Templates müssen Sie immer Tabelle wählen.menu_element : element +
                                                                                                                                                                              element_value : +relation
                                                                                                                                                                              +
                                                                                                                                                                              useragentCHAR255falseWebbrowser(Das Feld wird derzeit noch nicht ausgewertet.)menu_element : element +
                                                                                                                                                                              element_value : +useragent
                                                                                                                                                                              +
                                                                                                                                                                              contenttypeCHAR200falseDateitypz.B.: text/html; charset=ISO-8859-1. Bei XSL Stylesheets + ist dies das Ausgabeformat, bei JasperReports Templates ist dies + das default Ausgabeformatmenu_element : element +
                                                                                                                                                                              element_value : +contenttype
                                                                                                                                                                              +
                                                                                                                                                                              is_genericSMALLINT20falseGenerisches StylesheetWird nur für Ergebnistabellen ausgewertet, nicht für Masken-Stylesheets. Wenn 1, dann ist das Stylesheet für alle Ergebnistabellen nutzbar
                                                                                                                                                                              toolbar_icon_filepathVARCHAR255falseIcon in der SymbolleistePfad relativ zu webapps/superx
                                                                                                                                                                              usage_resultset_dataCHAR10TfalseNutzung der ErgebnisdatenWelche Ergebniszeilen soll das Stylesheet verarbeiten. S=Nur Schema, T=Aktuelle Baumstruktur,A=Alle Datenmenu_element : element +
                                                                                                                                                                              element_value : +usage_resultset_data
                                                                                                                                                                              +
                                                                                                                                                                              stylesheet_typeCHAR10XSLfalseArt des StylesheetsXSL,JRXML,XSL_JRXML,XSL_FO,XML,NATIVE,XLSXmenu_element : element +
                                                                                                                                                                              element_value : +stylesheet_type
                                                                                                                                                                              +
                                                                                                                                                                              jr_datasourceCHAR10falseDatenquelle (JR)Wird nur bei JR ausgewertet. Mögliche Werte: RS,XMLSOURCEmenu_element : element +
                                                                                                                                                                              element_value : +jr_datasource
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              Primärschlüssel c_stylesheets +

                                                                                                                                                                              +
                                                                                                                                                                                +
                                                                                                                                                                              1. tid
                                                                                                                                                                              2. +
                                                                                                                                                                              +
                                                                                                                                                                                +
                                                                                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                                                                                +
                                                                                                                                                                                +Tabelle sx_tables (Tabellen) +
                                                                                                                                                                                +

                                                                                                                                                                                Oberflächentexte für BI-Tabellen +

                                                                                                                                                                                +

                                                                                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                tidSERIAL10trueLaufnummer
                                                                                                                                                                                nameVARCHAR255falseName der Tabelle
                                                                                                                                                                                captionVARCHAR255falseBeschriftung
                                                                                                                                                                                descriptionVARCHAR255falseBeschreibung der Tabelle
                                                                                                                                                                                table_typeVARCHAR255falseTyp der Tabelle
                                                                                                                                                                                systeminfo_idINTEGER4falseDatenquelle für diesen Datensatz
                                                                                                                                                                                systeminfo_origINTEGER4falseDefault-DatenquelleVoreinstellung bei Auslieferung
                                                                                                                                                                                themaVARCHAR255falseThema der Tabelle
                                                                                                                                                                                sachgebiete_idVARCHAR255falseSachgebiet der Tabelle
                                                                                                                                                                                +

                                                                                                                                                                                Primärschlüssel pk_sx_tables +

                                                                                                                                                                                +
                                                                                                                                                                                  +
                                                                                                                                                                                1. tid
                                                                                                                                                                                2. +
                                                                                                                                                                                +
                                                                                                                                                                                  +
                                                                                                                                                                                • Index: unique ix_sx_tables auf sx_tables (name ); +
                                                                                                                                                                                • +
                                                                                                                                                                                +
                                                                                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                                                                                +
                                                                                                                                                                                +Tabelle systeminfo +
                                                                                                                                                                                +

                                                                                                                                                                                +

                                                                                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                tidINTEGER4true
                                                                                                                                                                                nameCHAR50true
                                                                                                                                                                                datumDATETIME4false
                                                                                                                                                                                +

                                                                                                                                                                                Primärschlüssel c_systeminfo +

                                                                                                                                                                                +
                                                                                                                                                                                  +
                                                                                                                                                                                1. tid
                                                                                                                                                                                2. +
                                                                                                                                                                                +
                                                                                                                                                                                  +
                                                                                                                                                                                    Wird benutzt in folgenden Masken: +
                                                                                                                                                                                  +
                                                                                                                                                                                  +Tabelle themenbaum (Themenbaum) +
                                                                                                                                                                                  +

                                                                                                                                                                                  Themenbaum

                                                                                                                                                                                  +

                                                                                                                                                                                  Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                  tidSERIAL4falseTid
                                                                                                                                                                                  nameVARCHAR255trueName
                                                                                                                                                                                  maskeninfo_idINTEGER4falseMaskemaskeninfo : tid +
                                                                                                                                                                                  +
                                                                                                                                                                                  parentINTEGER4falseÜbergeordnetthemenbaum : tid +
                                                                                                                                                                                  +
                                                                                                                                                                                  gueltig_seitDATE4falsegültig von
                                                                                                                                                                                  gueltig_bisDATE4falsegültig bis
                                                                                                                                                                                  erlaeuterungCHAR240false(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                                                  sortINTEGER2400trueSortiernummer
                                                                                                                                                                                  css_classVARCHAR255falseHTML CSS class
                                                                                                                                                                                  +

                                                                                                                                                                                  Primärschlüssel c_themenbaum +

                                                                                                                                                                                  +
                                                                                                                                                                                    +
                                                                                                                                                                                  1. tid
                                                                                                                                                                                  2. +
                                                                                                                                                                                  +
                                                                                                                                                                                    +
                                                                                                                                                                                      Wird benutzt in folgenden Masken: +
                                                                                                                                                                                    +
                                                                                                                                                                                    +Tabelle themenbaum_bak +
                                                                                                                                                                                    +

                                                                                                                                                                                    +

                                                                                                                                                                                    Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                    tidINTEGER4false
                                                                                                                                                                                    namevarchar255true
                                                                                                                                                                                    maskeninfo_idINTEGER4false
                                                                                                                                                                                    parentINTEGER4false
                                                                                                                                                                                    gueltig_seitDATE4false
                                                                                                                                                                                    gueltig_bisDATE4false
                                                                                                                                                                                    erlaeuterungCHAR240false
                                                                                                                                                                                    +
                                                                                                                                                                                      +
                                                                                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                                                                                      +
                                                                                                                                                                                      +Tabelle trans_cif +
                                                                                                                                                                                      +

                                                                                                                                                                                      +

                                                                                                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                      keySMALLINT2true
                                                                                                                                                                                      apnrCHAR10true
                                                                                                                                                                                      cif_tidINTEGER2false
                                                                                                                                                                                      sourcesystemINTEGER2trueVorsystem
                                                                                                                                                                                      sourcesystem_idVARCHAR255falseID im Vorsystem
                                                                                                                                                                                      systeminfo_idINTEGER4false
                                                                                                                                                                                      +
                                                                                                                                                                                        +
                                                                                                                                                                                      • Index: trans_cif_ind auf trans_cif (sourcesystem_id ); +
                                                                                                                                                                                      • +
                                                                                                                                                                                      +
                                                                                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                                                                                      +
                                                                                                                                                                                      +Tabelle trans_cifx +
                                                                                                                                                                                      +

                                                                                                                                                                                      +

                                                                                                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                      keySMALLINT2truecif : apnr +
                                                                                                                                                                                      key : +1
                                                                                                                                                                                      +
                                                                                                                                                                                      apnrCHAR10true
                                                                                                                                                                                      cifx_tidINTEGER2false
                                                                                                                                                                                      sourcesystemINTEGER2trueVorsystem
                                                                                                                                                                                      sourcesystem_idVARCHAR255falseID im Vorsystem
                                                                                                                                                                                      systeminfo_idINTEGER4false
                                                                                                                                                                                      +
                                                                                                                                                                                        +
                                                                                                                                                                                      • Index: trans_cifx_ind auf trans_cifx (sourcesystem_id ); +
                                                                                                                                                                                      • +
                                                                                                                                                                                      +
                                                                                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                                                                                      +
                                                                                                                                                                                      +Tabelle trans_dim_bp_apnr +
                                                                                                                                                                                      +

                                                                                                                                                                                      +

                                                                                                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                      + + + + + + + + + + + + + + + + +
                                                                                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                      dimension_bp_idINTEGER4true
                                                                                                                                                                                      apnrINTEGER255true
                                                                                                                                                                                      sourcesystem_idVARCHAR255falseID im Vorsystem
                                                                                                                                                                                      systeminfo_idINTEGER4false
                                                                                                                                                                                      +
                                                                                                                                                                                        +
                                                                                                                                                                                      • Index: ix_tr_dim_bp_apnr auf trans_dim_bp_apnr (dimension_bp_id, +sourcesystem_id, +systeminfo_id ); +
                                                                                                                                                                                      • +
                                                                                                                                                                                      +
                                                                                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                                                                                      +
                                                                                                                                                                                      +Tabelle trans_inst +
                                                                                                                                                                                      +

                                                                                                                                                                                      Tabelle zur Umschlüsselung von Kostenstellen-Nummern +

                                                                                                                                                                                      +

                                                                                                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                      tidSERIAL4trueTupelidentifier
                                                                                                                                                                                      instnrCHAR10falseInstitutionsnr. (original)
                                                                                                                                                                                      ch110_institutCHAR10falseInstitutionsnr. (transformiert)organigramm : key_apnr +
                                                                                                                                                                                      +
                                                                                                                                                                                      nameCHAR200falseInstitutionsname (transformiert)
                                                                                                                                                                                      gueltig_vonDATE4falsegültig von
                                                                                                                                                                                      gueltig_bisDATE4falsegültig bis
                                                                                                                                                                                      systeminfo_idINTEGER4falseQuellsystemsysteminfo : tid +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      Primärschlüssel c_trans_inst +

                                                                                                                                                                                      +
                                                                                                                                                                                        +
                                                                                                                                                                                      1. tid
                                                                                                                                                                                      2. +
                                                                                                                                                                                      +
                                                                                                                                                                                        +
                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                        +
                                                                                                                                                                                        +Tabelle unload_params (Entladeparameter) +
                                                                                                                                                                                        +

                                                                                                                                                                                        Parameter zum Steuern des Entladevorgangs

                                                                                                                                                                                        +

                                                                                                                                                                                        Themenbereich: Administration

                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                        tidSERIALtrueLaufnummer
                                                                                                                                                                                        param_idVARCHAR255trueName der Variable
                                                                                                                                                                                        param_valVARCHAR255falseWert der Variable
                                                                                                                                                                                        default_valVARCHAR255falseDefault-Wert der Variable
                                                                                                                                                                                        descriptionVARCHAR255falseBeschreibung der Variable
                                                                                                                                                                                        systeminfo_idINTEGER255falseQuellsystemDieser Wert darf keinesfalls geändert werdensysteminfo : tid +
                                                                                                                                                                                        +
                                                                                                                                                                                        priorityINTEGER2false1=Minimalparameter,0= Standard
                                                                                                                                                                                        sourcesystemINTEGER2false3= Fremdsystem,2=HIS GX,1=HISinOne,0=alle
                                                                                                                                                                                        wertebereichVARCHAR255falseWertebereich
                                                                                                                                                                                        ab_versionVARCHAR20falseNutzbar ab Version
                                                                                                                                                                                        gruppeVARCHAR100falseGruppe
                                                                                                                                                                                        +

                                                                                                                                                                                        Primärschlüssel c_unload_params +

                                                                                                                                                                                        +
                                                                                                                                                                                          +
                                                                                                                                                                                        1. tid
                                                                                                                                                                                        2. +
                                                                                                                                                                                        +
                                                                                                                                                                                          +
                                                                                                                                                                                            Wird benutzt in folgenden Masken: +
                                                                                                                                                                                          +
                                                                                                                                                                                          +Tabelle update_prot +
                                                                                                                                                                                          +

                                                                                                                                                                                          Protokolltabelle für inkrementelles Laden

                                                                                                                                                                                          +

                                                                                                                                                                                          Typ: Datentabelle, Themenbereich: Administration

                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                          tidSERIAL4true
                                                                                                                                                                                          systeminfo_idINTEGER0trueSysteminfoQuerverweis zur Systeminfo
                                                                                                                                                                                          update_entityCHAR40falseArt des Datensatzesz.B. zul_bew für Bewerber aus ZUL/APP
                                                                                                                                                                                          update_idINTEGER10falseType10 ist standardsicht, 20 ist alt.Hierarchie
                                                                                                                                                                                          updated_atDATETIME3594false
                                                                                                                                                                                          update_timeDATETIME3594false
                                                                                                                                                                                          +

                                                                                                                                                                                          Primärschlüssel pk_update_prot_tid +

                                                                                                                                                                                          +
                                                                                                                                                                                            +
                                                                                                                                                                                          1. tid
                                                                                                                                                                                          2. +
                                                                                                                                                                                          +
                                                                                                                                                                                            +
                                                                                                                                                                                              Wird benutzt in folgenden Masken: +
                                                                                                                                                                                            +
                                                                                                                                                                                            +Tabelle update_prot_neu +
                                                                                                                                                                                            +

                                                                                                                                                                                            Protokolltabelle für inkrementelles Laden (Ladetabelle) +

                                                                                                                                                                                            +

                                                                                                                                                                                            Typ: Datentabelle, Themenbereich: Administration

                                                                                                                                                                                            + + + + + + + + + + + + + + + + +
                                                                                                                                                                                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                            systeminfo_idINTEGER0trueSysteminfoQuerverweis zur Systeminfo
                                                                                                                                                                                            update_entityCHAR40falseArt des Datensatzesz.B. zul_bew für Bewerber aus ZUL/APP
                                                                                                                                                                                            update_idINTEGER10falseType10 ist standardsicht, 20 ist alt.Hierarchie
                                                                                                                                                                                            updated_atDATETIME3594false
                                                                                                                                                                                            +
                                                                                                                                                                                              +
                                                                                                                                                                                                Wird benutzt in folgenden Masken: +
                                                                                                                                                                                              +
                                                                                                                                                                                              +Tabelle user_dialog +
                                                                                                                                                                                              +

                                                                                                                                                                                              +

                                                                                                                                                                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                              idSERIALtrueNummer des Hinweis
                                                                                                                                                                                              identifierVARCHAR255trueBezeichnung des Hinweis
                                                                                                                                                                                              headlineTEXTfalseÜberschrift, die ggfs. über dem Hinweis ausgegeben werden soll (HTML möglich)
                                                                                                                                                                                              urlVARCHAR255trueURL zu HTML-Datei
                                                                                                                                                                                              hint_versionSMALLINTfalseoptionale Versionsnummer des Hinweis
                                                                                                                                                                                              annotationTEXTfalseHier kann ein interner Kommentar hinterlegt werden
                                                                                                                                                                                              confirmSMALLINTfalse0=nur anzeigen, 1=User muss bestätigen
                                                                                                                                                                                              confirm_promptTEXTfalseSatz der zur Bestätigung angezeigt werden soll, falls null: Ich habe den Hinweis zur Kenntnis genommen
                                                                                                                                                                                              createdDATEfalseErstellungsdatum
                                                                                                                                                                                              valid_fromDATEfalse
                                                                                                                                                                                              valid_tillDATEfalse
                                                                                                                                                                                              categoryVARCHAR255falseoptionale Angabe einer Hinweisart, z.B. Datenschutzerklärung
                                                                                                                                                                                              natureVARCHAR255falseoptionale Angabe eines Hinweistyps, z.B. Datenschutzerklärung
                                                                                                                                                                                              attrib1INTEGERfalseoptionales Attribut
                                                                                                                                                                                              attrib2VARCHAR255falseoptionales Attribut
                                                                                                                                                                                              attrib3VARCHAR255falseoptionales Attribut
                                                                                                                                                                                              +

                                                                                                                                                                                              Primärschlüssel c_user_dialog +

                                                                                                                                                                                              +
                                                                                                                                                                                                +
                                                                                                                                                                                              1. id
                                                                                                                                                                                              2. +
                                                                                                                                                                                              +
                                                                                                                                                                                                +
                                                                                                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                +
                                                                                                                                                                                                +Tabelle user_dialog_accept +
                                                                                                                                                                                                +

                                                                                                                                                                                                User die bestimmte Hinweise gesehen/bestätigt haben +

                                                                                                                                                                                                +

                                                                                                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                idSERIALtrue
                                                                                                                                                                                                userinfo_idINTEGERtrue
                                                                                                                                                                                                user_dialog_idINTEGERtrue
                                                                                                                                                                                                ip_addressVARCHAR100false
                                                                                                                                                                                                client_nameVARCHAR255false
                                                                                                                                                                                                timestampDATETIME3594true
                                                                                                                                                                                                +

                                                                                                                                                                                                Primärschlüssel c_user_dialog_accept +

                                                                                                                                                                                                +
                                                                                                                                                                                                  +
                                                                                                                                                                                                1. userinfo_id
                                                                                                                                                                                                2. +
                                                                                                                                                                                                +
                                                                                                                                                                                                  +
                                                                                                                                                                                                1. user_dialog_id
                                                                                                                                                                                                2. +
                                                                                                                                                                                                +
                                                                                                                                                                                                  +
                                                                                                                                                                                                    Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +Tabelle user_einstellungen +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                  + + + + + + + + + + +
                                                                                                                                                                                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                  tidINTEGER4true
                                                                                                                                                                                                  arbeitsverzeichnisCHAR255false
                                                                                                                                                                                                  +

                                                                                                                                                                                                  Primärschlüssel c_user_einstellungen +

                                                                                                                                                                                                  +
                                                                                                                                                                                                    +
                                                                                                                                                                                                  1. tid
                                                                                                                                                                                                  2. +
                                                                                                                                                                                                  +
                                                                                                                                                                                                    +
                                                                                                                                                                                                      Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +Tabelle user_group_bez +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    +

                                                                                                                                                                                                    Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                    userinfo_idINTEGER4falseUserIDuserinfo : tid +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    groupinfo_idINTEGER4falseGruppegroupinfo : tid +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    external_entrySMALLINT0falseRecht wird von externem System (HisInOne) gesetzt und entfernt
                                                                                                                                                                                                    +

                                                                                                                                                                                                    Primärschlüssel c_user_group_bez +

                                                                                                                                                                                                    +
                                                                                                                                                                                                      +
                                                                                                                                                                                                    1. groupinfo_id
                                                                                                                                                                                                    2. +
                                                                                                                                                                                                    +
                                                                                                                                                                                                      +
                                                                                                                                                                                                    1. userinfo_id
                                                                                                                                                                                                    2. +
                                                                                                                                                                                                    +
                                                                                                                                                                                                      +
                                                                                                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +Tabelle user_hinweis +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      User die bestimmte Hinweise sehen/bestätigen müssen +

                                                                                                                                                                                                      +

                                                                                                                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                      + + + + + + + + + + +
                                                                                                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                      userinfo_idINTEGERtrue
                                                                                                                                                                                                      hinweise_idintegertrue
                                                                                                                                                                                                      +

                                                                                                                                                                                                      Primärschlüssel c_usr_hinweis +

                                                                                                                                                                                                      +
                                                                                                                                                                                                        +
                                                                                                                                                                                                      1. userinfo_id
                                                                                                                                                                                                      2. +
                                                                                                                                                                                                      +
                                                                                                                                                                                                        +
                                                                                                                                                                                                      1. hinweise_id
                                                                                                                                                                                                      2. +
                                                                                                                                                                                                      +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +Tabelle user_institution +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        +

                                                                                                                                                                                                        Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                        useridINTEGERtrueUserIDuserinfo : tid +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        nameCHAR50falseNames des InstitutsNur deskriptiv
                                                                                                                                                                                                        ch110_institutCHAR10trueInstitutorganigramm : key_apnr +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        hierarchieSMALLINT0falseobsoletes Feld(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                                                                        gueltig_seitDATE401.01.1900trueGültig abAb Kern5.0 bezieht sich die Gültigkeit auf den Tag, ab dem eine Berechtigung gültig ist.(Vorher bezog sie sich darauf, welchen Stand man für eine Sicht einstellte).
                                                                                                                                                                                                        gueltig_bisDATE401.01.3000trueGültig bisAb Kern5.0 bezieht sich die Gültigkeit auf den Tag, bis zu dem eine Berechtigung gültig ist.(Vorher bezog sie sich darauf, welchen Stand man für eine Sicht einstellte).
                                                                                                                                                                                                        lehreSMALLINT0falseobsoletes Feld(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                                                                        external_entrySMALLINT0falseRecht wird von externem System (HisInOne) gesetzt und entfernt
                                                                                                                                                                                                        externalidvarchar200falseID der berechtigten Kostenstelle in externem System (HISinONe: orgunitid)
                                                                                                                                                                                                        +

                                                                                                                                                                                                        Primärschlüssel c_user_institution +

                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        1. ch110_institut
                                                                                                                                                                                                        2. +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        1. gueltig_bis
                                                                                                                                                                                                        2. +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        1. gueltig_seit
                                                                                                                                                                                                        2. +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        1. userid
                                                                                                                                                                                                        2. +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        • Index: ix_user_inst1 auf user_institution (ch110_institut ); +
                                                                                                                                                                                                        • +
                                                                                                                                                                                                        • Index: ix_user_inst2 auf user_institution (userid ); +
                                                                                                                                                                                                        • +
                                                                                                                                                                                                        • Index: ix_user_inst3 auf user_institution (gueltig_seit, +gueltig_bis ); +
                                                                                                                                                                                                        • +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +Tabelle user_kostentraeger +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        +

                                                                                                                                                                                                        Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                        useridINTEGERtrueUserID
                                                                                                                                                                                                        key_apnrCHAR50trueKostentraeger
                                                                                                                                                                                                        kommentarCHAR250falseKommentarNur deskriptiv
                                                                                                                                                                                                        gueltig_seitDATE401.01.1900falseGültig von (Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                                                                        gueltig_bisDATE401.01.3000falseGültig bis(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                                                                        external_entrySMALLINT0falseRecht wird von externem System (HisInOne) gesetzt und entfernt
                                                                                                                                                                                                        externalidvarchar200falseID der berechtigten Kostenstelle in externem System (HISinONe: orgunitid)
                                                                                                                                                                                                        +

                                                                                                                                                                                                        Primärschlüssel c_user_ktr +

                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        1. key_apnr
                                                                                                                                                                                                        2. +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        1. userid
                                                                                                                                                                                                        2. +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        • Index: ix_user_ktr auf user_kostentraeger (key_apnr ); +
                                                                                                                                                                                                        • +
                                                                                                                                                                                                        • Index: ix_user_ktr2 auf user_kostentraeger (userid ); +
                                                                                                                                                                                                        • +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +Tabelle user_masken_bez +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        +

                                                                                                                                                                                                        Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                        userinfo_idINTEGER4falseuserinfo : tid +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        maskeninfo_idINTEGER4falsemaskeninfo : tid +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        external_entrysmallint0falseRecht wird von externem System (HisInOne) gesetzt und entfernt
                                                                                                                                                                                                        +

                                                                                                                                                                                                        Primärschlüssel c_user_masken_bez +

                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        1. maskeninfo_id
                                                                                                                                                                                                        2. +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        1. userinfo_id
                                                                                                                                                                                                        2. +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                            Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +Tabelle user_portlet_bez +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          +

                                                                                                                                                                                                          Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                          + + + + + + + + + + +
                                                                                                                                                                                                          FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                          userinfo_idINTEGER4falseUserID
                                                                                                                                                                                                          portlet_idINTEGER4falsePortlet
                                                                                                                                                                                                          +

                                                                                                                                                                                                          Primärschlüssel c_user_portlet_bez +

                                                                                                                                                                                                          +
                                                                                                                                                                                                            +
                                                                                                                                                                                                          1. portlet_id
                                                                                                                                                                                                          2. +
                                                                                                                                                                                                          +
                                                                                                                                                                                                            +
                                                                                                                                                                                                          1. userinfo_id
                                                                                                                                                                                                          2. +
                                                                                                                                                                                                          +
                                                                                                                                                                                                            +
                                                                                                                                                                                                              Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +Tabelle user_preset_values +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            Tabelle für userspezifische Feldvorbelegungen

                                                                                                                                                                                                            +

                                                                                                                                                                                                            Typ: Datentabelle, Themenbereich: Administration

                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                            FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                            userinfo_idINTEGER10false
                                                                                                                                                                                                            felderinfo_idINTEGER4falseFeld ID
                                                                                                                                                                                                            field_valueVARCHAR255falsegespeicherte Vorbelegung
                                                                                                                                                                                                            +

                                                                                                                                                                                                            Primärschlüssel c_user_preset_values +

                                                                                                                                                                                                            +
                                                                                                                                                                                                              +
                                                                                                                                                                                                            1. userinfo_id
                                                                                                                                                                                                            2. +
                                                                                                                                                                                                            +
                                                                                                                                                                                                              +
                                                                                                                                                                                                            1. felderinfo_id
                                                                                                                                                                                                            2. +
                                                                                                                                                                                                            +
                                                                                                                                                                                                              +
                                                                                                                                                                                                                Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +Tabelle user_pw +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              +

                                                                                                                                                                                                              Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                              FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                              userinfo_idINTEGERtrue
                                                                                                                                                                                                              pw_gueltig_bisdatefalse
                                                                                                                                                                                                              last_loginDATETIME3594falseLetzter erfolgreicher Login
                                                                                                                                                                                                              old_sha1CHAR255false
                                                                                                                                                                                                              zeitpunkt1DATETIME3594falseZeitpunkt der 1. Änderung des PW
                                                                                                                                                                                                              old_sha2CHAR255false
                                                                                                                                                                                                              zeitpunkt2DATETIME3594falseZeitpunkt der 2. Änderung des PW
                                                                                                                                                                                                              old_sha3CHAR255false
                                                                                                                                                                                                              zeitpunkt3DATETIME3594falseZeitpunkt der 3. Änderung des PW
                                                                                                                                                                                                              old_sha4CHAR255false
                                                                                                                                                                                                              zeitpunkt4DATETIME3594falseZeitpunkt der 4. Änderung des PW
                                                                                                                                                                                                              old_sha5CHAR255false
                                                                                                                                                                                                              zeitpunkt5DATETIME3594falseZeitpunkt der 5. Änderung des PW
                                                                                                                                                                                                              old_sha6CHAR255false
                                                                                                                                                                                                              zeitpunkt6DATETIME3594falseZeitpunkt der 6. Änderung des PW
                                                                                                                                                                                                              old_sha7CHAR255false
                                                                                                                                                                                                              zeitpunkt7DATETIME3594falseZeitpunkt der 7. Änderung des PW
                                                                                                                                                                                                              +

                                                                                                                                                                                                              Primärschlüssel pk_user_pw +

                                                                                                                                                                                                              +
                                                                                                                                                                                                                +
                                                                                                                                                                                                              1. userinfo_id
                                                                                                                                                                                                              2. +
                                                                                                                                                                                                              +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                  Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +Tabelle user_sachgeb_bez +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                +

                                                                                                                                                                                                                Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                userinfo_idINTEGER4falseuserinfo : benutzer +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                sachgebiete_idINTEGER4falsesachgebiete : tid +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                external_entrysmallint0falseRecht wird von externem System (HisInOne) gesetzt und entfernt
                                                                                                                                                                                                                +

                                                                                                                                                                                                                Primärschlüssel c_user_sachgeb_bez +

                                                                                                                                                                                                                +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                1. sachgebiete_id
                                                                                                                                                                                                                2. +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                1. userinfo_id
                                                                                                                                                                                                                2. +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                    Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +Tabelle user_sichtarten +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                  FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                  userinfo_idINTEGERtrueuserinfo : tid +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  sichtartCHAR255trueRechte für eine Art von Sichten geben
                                                                                                                                                                                                                  external_entrysmallint0falseRecht wird von externem System (HisInOne) gesetzt und entfernt
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Primärschlüssel pk_user_sichtart +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                  1. userinfo_id
                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                  1. sichtart
                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                      Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +Tabelle user_sichten +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                    FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                    userinfo_idINTEGERtrueuserinfo : tid +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    sicht_name_internCHAR200trueRechte für eine einzelne Sicht gebensichten : name_intern +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    external_entrysmallint0falseRecht wird von externem System (HisInOne) gesetzt und entfernt
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Primärschlüssel pk_user_sicht +

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                    1. userinfo_id
                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                    1. sicht_name_intern
                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +Tabelle user_startfields +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      In angepassten SuperX-XML-Frontends kann man hier + Maskenfelder für Startseiten hinterlegen, + zu denen der User automatisch nach Login weitergeleitet wird. +

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                      tidserialtrue
                                                                                                                                                                                                                      useridINTEGERtrue
                                                                                                                                                                                                                      fieldnameCHAR255true
                                                                                                                                                                                                                      valueCHAR255
                                                                                                                                                                                                                      activeintegertrue
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Primärschlüssel c_user_startfields +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                      1. tid
                                                                                                                                                                                                                      2. +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                      • Index: ix_ussf auf user_startfields (userid ); +
                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +Tabelle user_startpage +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      In angepassten SuperX-XML-Frontends kann man hier + Startseiten hinterlegen, + zu denen der User automatisch nach Login weitergeleitet wird. +

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                      tidserialtrue
                                                                                                                                                                                                                      useridINTEGERtrue
                                                                                                                                                                                                                      starturlCHAR255
                                                                                                                                                                                                                      encryptedsmallint0
                                                                                                                                                                                                                      notolderthanINTEGER
                                                                                                                                                                                                                      startmaskinteger
                                                                                                                                                                                                                      alturlchar255
                                                                                                                                                                                                                      stylesheetCHAR255
                                                                                                                                                                                                                      stylesheet2CHAR255
                                                                                                                                                                                                                      contenttypeCHAR255
                                                                                                                                                                                                                      extra1CHAR255
                                                                                                                                                                                                                      extra2CHAR255
                                                                                                                                                                                                                      activeintegertrue
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Primärschlüssel c_user_startpage +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                      1. tid
                                                                                                                                                                                                                      2. +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                      • Index: ix_ussp auf user_startpage (userid ); +
                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +Tabelle userinfo +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                      tidINTEGER4true
                                                                                                                                                                                                                      benutzerVARCHAR255true
                                                                                                                                                                                                                      kennwortCHAR16false
                                                                                                                                                                                                                      nameCHAR50false
                                                                                                                                                                                                                      max_versuchSMALLINT2true
                                                                                                                                                                                                                      akt_versuchSMALLINT2true
                                                                                                                                                                                                                      emailCHAR255false
                                                                                                                                                                                                                      administrationSMALLINT2true
                                                                                                                                                                                                                      archiv_rechtSMALLINT2true
                                                                                                                                                                                                                      passwd_shaCHAR255false
                                                                                                                                                                                                                      infoCHAR255false
                                                                                                                                                                                                                      extern_account_idVARCHAR255false
                                                                                                                                                                                                                      extern_person_idVARCHAR255false
                                                                                                                                                                                                                      sieht_projekteSMALLINT0falseDarf der User Projekte sehen
                                                                                                                                                                                                                      extern_role_idINTEGER9false
                                                                                                                                                                                                                      gueltig_vondateBeginn Gültigkeit
                                                                                                                                                                                                                      gueltig_bisdateEnde Gültigkeit
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Primärschlüssel c_userinfo +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                      1. tid
                                                                                                                                                                                                                      2. +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                      • Index: unique i_userinfo auf userinfo (benutzer ); +
                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +Tabelle xdummy +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Typ: Schlüsseltabelle, Themenbereich: Administration

                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                      cCHAR1false
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        +Joolap-Blueprints +

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        +Views +

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View user_groups +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        View for Tomcat Realm

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        userinfo_idinteger10false
                                                                                                                                                                                                                        benutzerVARCHAR255false
                                                                                                                                                                                                                        groupinfo_idinteger10false
                                                                                                                                                                                                                        groupinfo_nameVARCHAR255false
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • select U.tid, U.benutzer,G.tid,G.name from userinfo U, groupinfo G, user_group_bez B +where U.tid=B.userinfo_id +and G.tid=B.groupinfo_id +and U.akt_versuch <= U.max_versuch
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View menu_element_fieldmode +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Integer-Ausprägungen ausgewählter Schlüssel (für + DBFORMS)

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        idINTEGER4true
                                                                                                                                                                                                                        elementVARCHAR50false
                                                                                                                                                                                                                        element_valueINTEGER4false
                                                                                                                                                                                                                        descriptionVARCHAR255false
                                                                                                                                                                                                                        natureVARCHAR255false
                                                                                                                                                                                                                        annotationVARCHAR255false
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • DBMS: POSTGRES:
                                                                                                                                                                                                                          SELECT id, + element, + to_number(element_value,'999999')::integer, + description, + nature, + annotation + FROM menu_element + where element='Feldart' +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        • DBMS: INFORMIX:
                                                                                                                                                                                                                          SELECT id, + element, + element_value::integer, + description, + nature, + annotation + FROM menu_element + where element='Feldart' +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View menu_element_mandatory +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Integer-Ausprägungen ausgewählter Schlüssel (für + DBFORMS)

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        idINTEGER4true
                                                                                                                                                                                                                        elementVARCHAR50false
                                                                                                                                                                                                                        element_valueINTEGER4false
                                                                                                                                                                                                                        descriptionVARCHAR255false
                                                                                                                                                                                                                        natureVARCHAR255false
                                                                                                                                                                                                                        annotationVARCHAR255false
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • DBMS: POSTGRES:
                                                                                                                                                                                                                          SELECT id, + element, + to_number(element_value,'999999')::integer, + description, + nature, + annotation + FROM menu_element + where element='obligatorisch' +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        • DBMS: INFORMIX:
                                                                                                                                                                                                                          SELECT id, + element, + element_value::integer, + description, + nature, + annotation + FROM menu_element + where element='obligatorisch' + +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View menu_element_nature +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        CHAR(15)-Ausprägung des Schlüssels Feldtyp (für + DBFORMS)

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        idINTEGER4true
                                                                                                                                                                                                                        elementVARCHAR50false
                                                                                                                                                                                                                        element_valueVARCHAR15false
                                                                                                                                                                                                                        descriptionVARCHAR255false
                                                                                                                                                                                                                        natureVARCHAR255false
                                                                                                                                                                                                                        annotationVARCHAR255false
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • + SELECT id, + element, + element_value::char(15), + description, + nature, + annotation + FROM menu_element + where element='Feldtyp' +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View menu_element_orgstructure +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        View orgstruktur

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        orgstrukturINTEGER2false
                                                                                                                                                                                                                        descriptionVARCHAR255false
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • + + select element as orgstruktur, description + from menu_element + where element='orgstruktur' +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View user_inst_org +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        View user_inst_orgstruktur

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        useridinteger4false
                                                                                                                                                                                                                        nameCHAR150false
                                                                                                                                                                                                                        ch110_institutCHAR10true
                                                                                                                                                                                                                        hierarchieSMALLINT2false
                                                                                                                                                                                                                        gueltig_seitDATE4true
                                                                                                                                                                                                                        gueltig_bisDATE4true
                                                                                                                                                                                                                        lehreSMALLINT2false
                                                                                                                                                                                                                        orgstrukturinteger2false
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • +SELECT userid, + O.name, + U.ch110_institut, + U.hierarchie, + U.gueltig_seit, + U.gueltig_bis, + U.lehre, + O.orgstruktur +FROM user_institution U, organigramm O +where O.key_apnr=U.ch110_institut +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View hochschulen +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        View Hochschulen

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        hs_nrinteger4false
                                                                                                                                                                                                                        nameCHAR150false
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • DBMS: POSTGRES:
                                                                                                                                                                                                                          +SELECT to_number(apnr,'9999') as hs_nr,lang_1 as name from cifx where key=36 +and length(apnr) < 5 +and (substring(apnr from 1 for 1) in ('0','1','2','3','4','5','6','7','8','9') +or substring(apnr from 1 for 1) is null +or trim(substring(apnr from 1 for 1)) ='') +and (substring(apnr from 2 for 1) in ('0','1','2','3','4','5','6','7','8','9') +or substring(apnr from 2 for 1) is null +or trim(substring(apnr from 2 for 1)) ='') +and (substring(apnr from 3 for 1) in ('0','1','2','3','4','5','6','7','8','9') +or substring(apnr from 3 for 1) is null +or trim(substring(apnr from 3 for 1)) ='') +and (substring(apnr from 4 for 1) in ('0','1','2','3','4','5','6','7','8','9') +or substring(apnr from 4 for 1) is null +or trim(substring(apnr from 4 for 1)) ='') + +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        • DBMS: INFORMIX:
                                                                                                                                                                                                                          +SELECT apnr::integer as hs_nr,lang_1 as name from cifx where key=36 +and length(apnr) < 5 +and (substring(apnr from 1 for 1) in ('0','1','2','3','4','5','6','7','8','9') +or substring(apnr from 1 for 1) is null +or trim(substring(apnr from 1 for 1)) ='') +and (substring(apnr from 2 for 1) in ('0','1','2','3','4','5','6','7','8','9') +or substring(apnr from 2 for 1) is null +or trim(substring(apnr from 2 for 1)) ='') +and (substring(apnr from 3 for 1) in ('0','1','2','3','4','5','6','7','8','9') +or substring(apnr from 3 for 1) is null +or trim(substring(apnr from 3 for 1)) ='') +and (substring(apnr from 4 for 1) in ('0','1','2','3','4','5','6','7','8','9') +or substring(apnr from 4 for 1) is null +or trim(substring(apnr from 4 for 1)) ='') +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View dimension_view +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        View auf dimension-Tabelle nach HIS1-DB-Struktur +

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        idINTEGER4true
                                                                                                                                                                                                                        dimension_bp_idINTEGER4true
                                                                                                                                                                                                                        fact_tableVARCHAR255false
                                                                                                                                                                                                                        fact_table_idINTEGER4false
                                                                                                                                                                                                                        d_akt_vonDATE4false
                                                                                                                                                                                                                        d_akt_bisDATE4false
                                                                                                                                                                                                                        nameVARCHAR255false
                                                                                                                                                                                                                        druckVARCHAR255falseDrucktext
                                                                                                                                                                                                                        lang_1VARCHAR255false
                                                                                                                                                                                                                        lang_2VARCHAR255false
                                                                                                                                                                                                                        lang_3VARCHAR255false
                                                                                                                                                                                                                        sourcefilterVARCHAR255falsewhere-Bedingungggf. zusätzliche where-Bedingung für blueprint
                                                                                                                                                                                                                        system_keyVARCHAR255falseSchlüssel der Anwendungwird von Anwendung gesetzt, darf nicht geändert werden +
                                                                                                                                                                                                                        view_referenceVARCHAR255falseReferenz-View bei Teilmengenwird von Anwendung gesetzt, darf nicht geändert werden +
                                                                                                                                                                                                                        sourcesqlTEXT32005falseSQL zur Selektion der Schlüssel in eduetl / edudatawird von Anwendung gesetzt, darf nicht geändert werden +
                                                                                                                                                                                                                        obj_guidVARCHAR255false
                                                                                                                                                                                                                        lock_versionINTEGER150false
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • DBMS: POSTGRES:
                                                                                                                                                                                                                          +SELECT D.tid as id, + D.dimension_bp_id, + D.fact_table, + T.tid as fact_table_id, + D.d_akt_von, + D.d_akt_bis, + D.name, + D.druck, + D.lang_1, + D.lang_2, + D.lang_3, + D.sourcefilter, + D.system_key, + ''::varchar(255) as view_reference, + ('select C.' || F.foreignkey_int || ' as id,T.sourcesystem_id, C.' || F.foreignkey_col || ' as apnr,C.' || F.foreignkey_cap || ' as name' + ||',' || D.system_key || '::integer as mschluessel,T.apnr as aschluessel,null::VARCHAR(255) as obj_guid ,null::integer as lock_version' + || ' from ' || F.foreignkey_tab || ' C,trans_dim_bp_apnr T' + || ' where T.sourcesystem_id=C.' || F.foreignkey_col || '::varchar(255)' + || coalesce(' and ' || F.foreignkey_cond || ' ','') + || 'and ' || D.dimension_bp_id ||' =T.dimension_bp_id' + )::text as sourcesql, + null::VARCHAR(255) as obj_guid , + null::integer as lock_version +FROM sx_fields F,dimension D left outer join sx_tables T on (T.name=D.fact_table) +where F.table_name=D.fact_table +and F.name=D.name +and F.foreignkey_int is not null +union +SELECT D.tid as id, + D.dimension_bp_id, + D.fact_table, + T.tid as fact_table_id, + D.d_akt_von, + D.d_akt_bis, + D.name, + D.druck, + D.lang_1, + D.lang_2, + D.lang_3, + D.sourcefilter, + D.system_key, + ''::varchar(255) as view_reference, + ('select C.' || F.foreignkey_col || ' as id,T.sourcesystem_id, C.' || F.foreignkey_col || ' as apnr,C.' || F.foreignkey_cap || ' as name' + ||',' || D.system_key || '::integer as mschluessel,T.apnr as aschluessel,null::VARCHAR(255) as obj_guid ,null::integer as lock_version ' + || 'from ' || F.foreignkey_tab || ' C,trans_dim_bp_apnr T ' + || 'where T.sourcesystem_id=C.' || F.foreignkey_col || '::varchar(255) ' + || coalesce(' and ' || F.foreignkey_cond || ' ','') + || 'and ' || D.dimension_bp_id ||' =T.dimension_bp_id ' + )::text as sourcesql, + null::VARCHAR(255) as obj_guid , + null::integer as lock_version +FROM sx_fields F,dimension D left outer join sx_tables T on (T.name=D.fact_table) +where F.table_name=D.fact_table +and F.name=D.name +and F.foreignkey_int is null +union +SELECT distinct T.tid+1000000 as id, + 0::integer, + D.fact_table, + T.tid as fact_table_id, + D.d_akt_von, + D.d_akt_bis, + 'hochschulweit'::varchar(255), + 'hochschulweit'::varchar(255), + 'hochschulweit'::varchar(255), + 'hochschulweit'::varchar(255), + 'hochschulweit'::varchar(255), + '', + '1000'::varchar(255), + ''::varchar(255) as view_reference, + null::text as sourcesql, + null::VARCHAR(255) as obj_guid , + null::integer as lock_version + FROM dimension D inner join sx_tables T on (T.name=D.fact_table) + + union +SELECT distinct T.tid+2000000 as id, + D.dimension_bp_id, + D.fact_table, + T.tid as fact_table_id, + D.d_akt_von, + D.d_akt_bis, + 'ca108_amtsbez'::varchar(255), + 'Professoren'::varchar(255), + 'Professoren'::varchar(255), + 'Professoren'::varchar(255), + 'Professoren'::varchar(255), + ''::varchar(255), + D.system_key, + 'sva_dim_professor', + '', + null::VARCHAR(255) as obj_guid , + null::integer as lock_version + FROM dimension D inner join sx_tables T on (T.name=D.fact_table) + where D.fact_table='sva_pers_cube' + and D.name='ca108_amtsbez' +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        • DBMS: INFORMIX:
                                                                                                                                                                                                                          +SELECT D.tid as id, + D.dimension_bp_id, + D.fact_table, + T.tid as fact_table_id, + D.d_akt_von, + D.d_akt_bis, + D.name, + D.druck, + D.lang_1, + D.lang_2, + D.lang_3, + D.sourcefilter, + D.system_key, + ''::varchar(255) as view_reference, + ('select C.' || F.foreignkey_int || ' as id,T.sourcesystem_id, C.' || F.foreignkey_col || ' as apnr,C.' || F.foreignkey_cap || ' as name' + ||',' || D.system_key || '::integer as mschluessel,T.apnr as aschluessel,null::VARCHAR(255) as obj_guid ,null::integer as lock_version' + || ' from ' || F.foreignkey_tab || ' C,trans_dim_bp_apnr T' + || ' where T.sourcesystem_id=C.' || F.foreignkey_col || '::varchar(255)' + || nvl(' and ' || F.foreignkey_cond || ' ','') + || 'and ' || D.dimension_bp_id ||' =T.dimension_bp_id' + )::lvarchar as sourcesql, + null::VARCHAR(255) as obj_guid , + null::integer as lock_version +FROM sx_fields F,dimension D left outer join sx_tables T on (T.name=D.fact_table) +where F.table_name=D.fact_table +and F.name=D.name +and F.foreignkey_int is not null +union +SELECT D.tid as id, + D.dimension_bp_id, + D.fact_table, + T.tid as fact_table_id, + D.d_akt_von, + D.d_akt_bis, + D.name, + D.druck, + D.lang_1, + D.lang_2, + D.lang_3, + D.sourcefilter, + D.system_key, + ''::varchar(255) as view_reference, + ('select C.' || F.foreignkey_col || ' as id,T.sourcesystem_id, C.' || F.foreignkey_col || ' as apnr,C.' || F.foreignkey_cap || ' as name' + ||',' || D.system_key || '::integer as mschluessel,T.apnr as aschluessel,null::VARCHAR(255) as obj_guid ,null::integer as lock_version ' + || 'from ' || F.foreignkey_tab || ' C,trans_dim_bp_apnr T ' + || 'where T.sourcesystem_id=C.' || F.foreignkey_col || '::varchar(255) ' + || nvl(' and ' || F.foreignkey_cond || ' ','') + || 'and ' || D.dimension_bp_id ||' =T.dimension_bp_id ' + )::lvarchar as sourcesql, + null::VARCHAR(255) as obj_guid , + null::integer as lock_version +FROM sx_fields F,dimension D left outer join sx_tables T on (T.name=D.fact_table) +where F.table_name=D.fact_table +and F.name=D.name +and F.foreignkey_int is null +union +SELECT distinct T.tid+1000000 as id, + 0::integer, + D.fact_table, + T.tid as fact_table_id, + D.d_akt_von, + D.d_akt_bis, + 'hochschulweit'::varchar(255), + 'hochschulweit'::varchar(255), + 'hochschulweit'::varchar(255), + 'hochschulweit'::varchar(255), + 'hochschulweit'::varchar(255), + '', + '1000'::varchar(255), + ''::varchar(255) as view_reference, + null::lvarchar as sourcesql, + null::VARCHAR(255) as obj_guid , + null::integer as lock_version + FROM dimension D inner join sx_tables T on (T.name=D.fact_table) + + union +SELECT distinct T.tid+2000000 as id, + D.dimension_bp_id, + D.fact_table, + T.tid as fact_table_id, + D.d_akt_von, + D.d_akt_bis, + 'ca108_amtsbez'::varchar(255), + 'Professoren'::varchar(255), + 'Professoren'::varchar(255), + 'Professoren'::varchar(255), + 'Professoren'::varchar(255), + ''::varchar(255), + D.system_key, + 'sva_dim_professor', + '', + null::VARCHAR(255) as obj_guid , + null::integer as lock_version + FROM dimension D inner join sx_tables T on (T.name=D.fact_table) + where D.fact_table='sva_pers_cube' + and D.name='ca108_amtsbez' +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View fact_table +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        View auf sx_tables-Tabelle (nur Hilfstabellen) nach + HIS1-DB-Struktur

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        idINTEGER4trueZusatzspalte für Hibernate
                                                                                                                                                                                                                        nameVARCHAR255falseName der Tabelle
                                                                                                                                                                                                                        themaVARCHAR255falseThema der Tabelle
                                                                                                                                                                                                                        captionVARCHAR255falseBeschriftung
                                                                                                                                                                                                                        descriptionVARCHAR255falseBeschreibung der Tabelle
                                                                                                                                                                                                                        systeminfo_idINTEGER4falseDatenquelle für diesen Datensatz
                                                                                                                                                                                                                        sachgebiete_idVARCHAR255falseSachgebiet der Tabelle
                                                                                                                                                                                                                        obj_guidVARCHAR255falseZusatzspalte für Hibernate
                                                                                                                                                                                                                        lock_versionINTEGER150falseZusatzspalte für Hibernate
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • +SELECT tid as id, +name, +thema, +caption, +description, +systeminfo_id, +sachgebiete_id, + null::VARCHAR(255) as obj_guid , + null::integer as lock_version +FROM sx_tables T +where T.name in (select distinct fact_table from dimension) +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View dim_staat (Nationalität) +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Staaten

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Typ: Schlüsseltabelle, Themenbereich: Studierende

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        apnrINTEGER5trueLaufnummer des Staates
                                                                                                                                                                                                                        druckCHAR10falseStaat
                                                                                                                                                                                                                        astatINTEGER5trueAmtl. Schlüssel Staat
                                                                                                                                                                                                                        kontinentCHAR255falseKontinent
                                                                                                                                                                                                                        inl_ausl_kurzCHAR255falseInland/Ausland (kurz)
                                                                                                                                                                                                                        inl_ausl_langCHAR255falseInland/Ausland (lang)
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • DBMS: POSTGRES:
                                                                                                                                                                                                                          +SELECT + apnr, + druck, + to_number(uniquename,'99999')::integer as astat, + level2_char as kontinent, + level1_char as inl_ausl_kurz, + level1_str as inl_ausl_lang +FROM dim_bp_apnr +where dimension_bp_id=(select D.tid from dimension_bp D where D.apnr='bluep_ca12_staat') +and apnr !=0 --nur für Abwärtskompatibilität zu FLEDA + + +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        • DBMS: INFORMIX:
                                                                                                                                                                                                                          +SELECT + apnr, + druck, + uniquename::integer as astat, + level2_char as kontinent, + level1_char as inl_ausl_kurz, + level1_str as inl_ausl_lang +FROM dim_bp_apnr +where dimension_bp_id=(select D.tid from dimension_bp D where D.apnr='bluep_ca12_staat') +and apnr !=0 --nur für Abwärtskompatibilität zu FLEDA + + +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View dim_stg (Studienfach) +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Studienfach Dimension für OLAP

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Typ: Schlüsseltabelle, Themenbereich: Studierende

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        apnrINTEGER5trueLaufnummer
                                                                                                                                                                                                                        druckCHAR10falseFach
                                                                                                                                                                                                                        stgCHAR10falseFach (Schlüssel)
                                                                                                                                                                                                                        stg_ktxtVARCHAR255falseFach Kurztext(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                                                                                        stg_ltxtVARCHAR255falseFach Langtext(Das Feld wird derzeit noch nicht ausgewertet.)
                                                                                                                                                                                                                        stg_astgrpCHAR10falseFächergruppe (Schlüssel)
                                                                                                                                                                                                                        stg_astgrp_strVARCHAR255falseFächergruppe
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • +SELECT + apnr, + druck, + uniquename as stg, + kurztext as stg_ktxt, + langtext as stg_ltxt, + level2_char as stg_astgrp, + level2_str as stg_astgrp_str +FROM dim_bp_apnr +where dimension_bp_id=(select D.tid from dimension_bp D where D.apnr='bluep_stg') + + + +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View dim_abschluss (Abschluss) +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Abschluss (intern)

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Typ: Schlüsseltabelle, Themenbereich: Studierende

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        apnrINTEGER5trueLaufnummer
                                                                                                                                                                                                                        druckCHAR10falseAbschluss
                                                                                                                                                                                                                        abschlussCHAR10falseAbschluss (Schlüssel)
                                                                                                                                                                                                                        abschluss_ktxtVARCHAR255falseAbschluss Kurztext
                                                                                                                                                                                                                        abschluss_ltxtVARCHAR255falseAbschluss Langtext
                                                                                                                                                                                                                        abschluss_astatCHAR10falseAbschluss amtlich (Schlüssel)
                                                                                                                                                                                                                        abschluss_astat_strVARCHAR255falseAbschluss amtlich
                                                                                                                                                                                                                        abschlussartCHAR10falseAbschlussart (Schlüssel)
                                                                                                                                                                                                                        abschlussart_strVARCHAR255falseAbschlussart
                                                                                                                                                                                                                        abschluss_grpCHAR10falseAbschlussgruppe (Schlüssel)
                                                                                                                                                                                                                        abschluss_grp_strVARCHAR255falseAbschlussgruppe
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • +SELECT + apnr, + druck, + uniquename as abschluss, + kurztext as abschluss_ktxt, + langtext as abschluss_ltxt, + level1_char as abschluss_astat, + level1_str as abschluss_astat_str, + level2_char as abschlussart, + level2_str as abschlussart_str, + level3_char as abschluss_grp, + level3_str as abschluss_grp_str +FROM dim_bp_apnr +where dimension_bp_id=(select D.tid from dimension_bp D where D.apnr='bluep_abschluss') + + + +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View dim_kost (Kostenstelle) +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Kostenstelle

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Typ: Schlüsseltabelle, Themenbereich: Kostenrechnung

                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        apnrINTEGER5trueLaufnummer
                                                                                                                                                                                                                        druckCHAR10falseKostenstelle
                                                                                                                                                                                                                        keyINTEGER10trueKostenstelle (Schlüssel)
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • SELECT dim_bp_apnr.apnr, dim_bp_apnr.druck, dim_bp_apnr.uniquename AS key + FROM dim_bp_apnr WHERE dim_bp_apnr.dimension_bp_id = ( + SELECT d.tid + FROM dimension_bp d WHERE d.apnr = 'bluep_kostenstelle' + )
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View dim_kotr (Kostenträger) +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Kostenträger

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Typ: Schlüsseltabelle, Themenbereich: Kostenrechnung

                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        apnrINTEGER5trueLaufnummer
                                                                                                                                                                                                                        druckCHAR10falseKostenträger
                                                                                                                                                                                                                        keyINTEGER10trueKostenträger (Schlüssel)
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • SELECT dim_bp_apnr.apnr, dim_bp_apnr.druck, dim_bp_apnr.uniquename AS key + FROM dim_bp_apnr WHERE dim_bp_apnr.dimension_bp_id = ( SELECT d.tid + FROM dimension_bp d WHERE d.apnr = 'bluep_kotr')
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +View dim_kreis (Landkreis) +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Landkreise

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Typ: Schlüsseltabelle, Themenbereich: Studierende

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        FeldnameFeldtypGrößeDefaultNot NullBeschreibungKommentarFremdschlüssel
                                                                                                                                                                                                                        apnrINTEGER5trueLaufnummer
                                                                                                                                                                                                                        astatVARCHARfalseAmtl. Schlüssel Landkreis
                                                                                                                                                                                                                        druckVARCHARfalseLandkreis
                                                                                                                                                                                                                        kfzVARCHARfalseKfz-Kennzeichen Landkreis
                                                                                                                                                                                                                        bland_druckVARCHARfalseBundesland
                                                                                                                                                                                                                        bland_kurzVARCHARfalseAbkz. Bundesland
                                                                                                                                                                                                                        bland_astatVARCHARfalseAmtl. Schlüssel Bundesland
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +sql-Ausdruck: +
                                                                                                                                                                                                                        • + SELECT + apnr, + TRIM(level3_char) AS astat, + druck, + TRIM(level1_char) AS kfz, + TRIM(level2_str) AS bland_druck, + TRIM(level2_char) AS bland_kurz, + TRIM(level3_str) AS bland_astat + FROM + dim_bp_apnr + WHERE + dimension_bp_id = (SELECT tid FROM dimension_bp WHERE apnr='bluep_hzbkfz') +
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          Wird benutzt in folgenden Masken: +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        +Funktionen / Prozeduren +

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        Funktion / Prozedur add_sem
                                                                                                                                                                                                                        BeschreibungImplementiert 'Semesterarithmetik' für das SuperX-Semesterformat (z.B. 20152)
                                                                                                                                                                                                                        Parameter +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                        1. semester_base integer (Semester, von dem aus gerechnet werden soll; dieser Parameter muss im gültigen Format übergeben werden (Bsp.: 20151 ist gültig, 20153 ist nur bei Trimestern gültig, 20154 ist ungültig))
                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                        3. adding_semesters integer (Anzahl zu addierender Semester (negativer Wert möglich))
                                                                                                                                                                                                                        4. +
                                                                                                                                                                                                                        5. treat_as_trimester boolean (falls 'true', wird mit Trimestern gerechnet)
                                                                                                                                                                                                                        6. +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        Script$SUPERX_DIR/db/install/prozeduren/add_sem_pg.sql
                                                                                                                                                                                                                        Rückgabe +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                        1. wert Typ: integer
                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        Kommentar
                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        Funktion / Prozedur current
                                                                                                                                                                                                                        Beschreibung
                                                                                                                                                                                                                        Parameter +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          ScriptCreate or replace Function current() RETURNS timestamptz STABLE + AS 'select now() ' LANGUAGE sql; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: timestamptz
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDas aktuelle Datum und die Uhrzeit als Timestamp
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur date
                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. datum text (Ein Datumswert als String (German locale) + )
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          ScriptCreate or replace Function date(text) RETURNS date STABLE + AS 'select to_date($1,''DD.MM.YYYY'')' LANGUAGE sql; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: date
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDas Datum als date
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur date_str
                                                                                                                                                                                                                          BeschreibungLiefert einen date als String (deutsche Locale) +
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert date (Ein date)
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          ScriptCREATE or replace FUNCTION date_str(date) RETURNS text STABLE + AS 'select to_char($1,''DD.MM.YYYY'') ;' LANGUAGE sql; +
                                                                                                                                                                                                                          ScriptCREATE procedure date_str(datum date) RETURNING varchar(255); + return '' || datum; +end procedure; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: text
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDer String
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur date_val
                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. datum char(100) (Ein Datumswert als String (German locale) + )
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Script$SUPERX_DIR/db/install/prozeduren/proc_date_val_pg.sql
                                                                                                                                                                                                                          Script create procedure date_val(datstr char(100)) + returning date; + define p_date date; + let p_date=date(datstr); + return p_date; + end procedure; + +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: date
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDas Datum als date
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur day
                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. datum date (Ein Datumswert)
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          ScriptCreate or replace Function day(date) RETURNS smallint STABLE + AS 'select extract(day from $1)::smallint 'LANGUAGE sql; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: smallint
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDer Tag als Smallint
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur day
                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. datum timestamp (Ein Datumswert)
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          ScriptCreate or replace Function day(timestamptz) RETURNS smallint STABLE + AS 'select extract(day from $1)::smallint 'LANGUAGE sql; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: smallint
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDer Tag als Smallint
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur decval
                                                                                                                                                                                                                          BeschreibungLiefert einen String als decimal (analog Basic-Funktion + val).
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert varchar(255) (Eine String-Repräsentation einer Dezimalzahl + )
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Script +CREATE or replace FUNCTION decval(varchar(255)) RETURNS numeric(16,2) STABLE + AS 'select $1::numeric where trim($1) !='''' ' LANGUAGE sql; +
                                                                                                                                                                                                                          Script + create procedure decval(p_str varchar(255)) + returning decimal(16,2); + + return p_str::decimal(16,2); +end procedure; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: numeric
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDie Zahl
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur decval
                                                                                                                                                                                                                          BeschreibungLiefert einen String als decimal (analog Basic-Funktion + val).
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert text (Eine String-Repräsentation einer Dezimalzahl + )
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Script +CREATE or replace FUNCTION decval(text) RETURNS numeric(16,2) STABLE + AS 'select $1::numeric where trim($1) !='''' ' LANGUAGE sql; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: numeric
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDie Zahl
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur decval
                                                                                                                                                                                                                          BeschreibungLiefert einen String als decimal (analog Basic-Funktion + val).
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert char(255) (Eine String-Repräsentation einer Dezimalzahl + )
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Script +CREATE or replace FUNCTION decval(char(255)) RETURNS numeric(16,2) STABLE + AS 'select $1::numeric where trim($1) !='''' ' LANGUAGE sql; +
                                                                                                                                                                                                                          Script + create procedure decval(p_str char(255)) + returning decimal(16,2); + + return p_str::decimal(16,2); +end procedure; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: numeric
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDie Zahl
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur hour
                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. datum time (Ein Datumswert)
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          ScriptCreate or replace Function hour(time) RETURNS smallint STABLE + AS 'select extract(hour from $1)::smallint ' LANGUAGE sql; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: smallint
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDie Stunde als Smallint
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur hour
                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. datum timestamp (Ein Datumswert)
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          ScriptCreate or replace Function hour(timestamptz) RETURNS smallint STABLE + AS 'select extract(hour from $1)::smallint ' LANGUAGE sql; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: smallint
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDie Stunde als Smallint
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur minute
                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. datum time (Ein Datumswert)
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          ScriptCreate or replace Function minute(time) RETURNS smallint STABLE + AS 'select extract(minute from $1)::smallint ' LANGUAGE sql; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: smallint
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDie Minute als Smallint
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur minute
                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. datum timestamp (Ein Datumswert)
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          ScriptCreate or replace Function minute(timestamptz) RETURNS smallint STABLE + AS 'select extract(minute from $1)::smallint ' LANGUAGE sql; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: smallint
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDie Minute als Smallint
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur month
                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. datum date (Ein Datumswert)
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          ScriptCreate or replace Function month(date) RETURNS smallint STABLE + AS 'select extract(month from $1)::smallint 'LANGUAGE sql; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: smallint
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDer Monat als Smallint
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur month
                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. datum timestamp (Ein Datumswert)
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          ScriptCreate or replace Function month(timestamptz) RETURNS smallint STABLE + AS 'select extract(month from $1)::smallint 'LANGUAGE sql; +
                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          1. wert Typ: smallint
                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          KommentarDer Monat als Smallint
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          Funktion / Prozedur now
                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script create procedure now() + returning datetime year to second; + return CURRENT; +end procedure; + +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: timestamp
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarJetzt
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur nvl
                                                                                                                                                                                                                            BeschreibungPrüft, ob ein Float-Wert null ist; wenn ja, dann wird + der zweite Parameter (ein Integer) zurückgegeben.
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert float (Ein Float-Wert)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. altwert integer (Ein Integer)
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            ScriptCreate or replace Function nvl(float,integer) RETURNS float STABLE + AS 'select coalesce($1,$2);' LANGUAGE sql; +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: float
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer Float-Wert
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur nvl
                                                                                                                                                                                                                            BeschreibungPrüft, ob ein decimal-Wert null ist; wenn ja, dann wird + der zweite Parameter (ein Integer) zurückgegeben.
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert float (Ein decimal-Wert)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. altwert integer (Ein Integer)
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            ScriptCreate or replace Function nvl(decimal,integer) RETURNS decimal STABLE + AS 'select coalesce($1,$2);' LANGUAGE sql; +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: decimal
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer decimal-Wert
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur nvl
                                                                                                                                                                                                                            BeschreibungPrüft, ob ein decimal-Wert null ist; wenn ja, dann wird + der zweite Parameter (ein DECIMAL) zurückgegeben.
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert numeric (Ein decimal-Wert)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. altwert numeric (Ein numeric)
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            ScriptCREATE or replace FUNCTION nvl(numeric,numeric) RETURNS numeric STABLE +AS 'select coalesce($1,$2);' LANGUAGE sql; +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: decimal
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer decimal-Wert
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur nvl
                                                                                                                                                                                                                            BeschreibungPrüft, ob ein smallint-Wert null ist; wenn ja, dann + wird der zweite Parameter (ein DECIMAL) zurückgegeben. +
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert smallint (Ein decimal-Wert)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. altwert smallint (Ein numeric)
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            ScriptCREATE or replace FUNCTION nvl(smallint,smallint) RETURNS smallint STABLE + AS 'select coalesce($1,$2);' LANGUAGE sql; + +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: smallint
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer decimal-Wert
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur nvl
                                                                                                                                                                                                                            BeschreibungPrüft, ob ein integer-Wert null ist; wenn ja, dann wird + der zweite Parameter (ein DECIMAL) zurückgegeben.
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert integer (Ein decimal-Wert)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. altwert integer (Ein numeric)
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            ScriptCREATE or replace FUNCTION nvl(integer,integer) RETURNS integer STABLE + AS 'select coalesce($1,$2);' LANGUAGE sql; + +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: integer
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer decimal-Wert
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur nvl
                                                                                                                                                                                                                            BeschreibungLiefert einen + String und einen Ersatz-String, wenn der erste Parameter null + ist. +
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert1 varchar (Ein String, + der null sein kann + )
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. wert2 char (Ein String, der + zurückgegeben wird, wenn der erste null ist + )
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script +CREATE or replace FUNCTION nvl(varchar,char) RETURNS text STABLE + AS 'select $1::text where $1 is not null union select $2::text where +$1 is null;' LANGUAGE sql; +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: text
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer String
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur nvl
                                                                                                                                                                                                                            BeschreibungLiefert einen String und einen Ersatz-String, wenn der + erste Parameter null ist.
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert1 varchar (Ein String, der null sein kann)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. wert2 varchar (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script +CREATE or replace FUNCTION nvl(varchar,varchar) RETURNS text STABLE + AS 'select $1::text where $1 is not null union select $2::text where $1 is null;' LANGUAGE sql; +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: text
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer String
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur nvl
                                                                                                                                                                                                                            BeschreibungLiefert einen String und einen Ersatz-String, wenn der + erste Parameter null ist.
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert1 char (Ein String, der null sein kann)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. wert2 char (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script +CREATE or replace FUNCTION nvl(char,char) RETURNS text STABLE + AS 'select $1::text where $1 is not null union select $2::text where $1 is null;' LANGUAGE sql; +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: text
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer String
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur nvl
                                                                                                                                                                                                                            BeschreibungLiefert einen String und einen Ersatz-String, wenn der + erste Parameter null ist.
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert1 text (Ein String, der null sein kann)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. wert2 text (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script +CREATE or replace FUNCTION nvl(text,text) RETURNS text STABLE + AS 'select $1::text where $1 is not null union select $2::text where $1 is null;' LANGUAGE sql; +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: text
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer String
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur nvl
                                                                                                                                                                                                                            BeschreibungLiefert einen + String und einen Ersatz-String, wenn der erste Parameter null + ist. +
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert1 char (Ein String, + der null sein kann + )
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. wert2 varchar (Ein String, der + zurückgegeben wird, wenn der erste null ist + )
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script +CREATE or replace FUNCTION nvl(char,varchar) RETURNS text STABLE + AS 'select $1::text where $1 is not null union select $2::text where +$1 is null;' LANGUAGE 'sql'; +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: text
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer String
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur second
                                                                                                                                                                                                                            Beschreibung
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. datum time (Ein Datumswert)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            ScriptCreate or replace Function second(time) RETURNS smallint STABLE + AS 'select extract(second from $1)::smallint ' LANGUAGE sql; +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: smallint
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDie Sekunde als Smallint
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur second
                                                                                                                                                                                                                            Beschreibung
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. datum timestamp (Ein Datumswert)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            ScriptCreate or replace Function second(timestamptz) RETURNS smallint STABLE + AS 'select extract(second from $1)::smallint ' LANGUAGE sql; +
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: smallint
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDie Sekunde als Smallint
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur sp_bool_to_smallint
                                                                                                                                                                                                                            BeschreibungKonvertiert boolean nach smallint
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert boolean (Boolean-Wert)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_bool_to_smallint_pg.sql
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: smallint
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Kommentar1 oder 0
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur sp_filter_orga
                                                                                                                                                                                                                            BeschreibungFiltert das Organigramm von oben nach unten für das + XML-Frontend.
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert integer (Maximale Anzahl Elemente)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_sp_filter_orga_pg.sql
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_sp_filter_orga_ids.sql
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: boolean
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarKeine Rückgabe, die Tabelle tmp_organigramm ist gefiltert. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur sp_get_benutzer
                                                                                                                                                                                                                            BeschreibungLiefert einen String mit Benutzernamen
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. ausgangswert integer (userinfo_id)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_get_benutzer_pg.sql
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_get_benutzer_ids.sql
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: text
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer Name der die Kennung
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur sp_get_dbform_right
                                                                                                                                                                                                                            BeschreibungPrüft ob Anwender Recht für DBFORM hat
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. p_form char (Formularname (String) )
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. p_userid integer (Die Userid)
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_get_dbform_right_ids.sql
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_get_dbform_right_pg.sql
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: smallint
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Kommentar1=ja,0=nein
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur sp_get_keylist_str
                                                                                                                                                                                                                            BeschreibungLiefert einen String aus einem Unterselect +
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. ausgangswert varchar (Ein String, der null sein kann)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. ausgangsfeld varchar (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            5. schluesseltab varchar (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                            7. schluesselfeld varchar (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                            9. datentab varchar (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                            11. where varchar (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_get_keylist_str_pg.sql
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_get_keylist_str_ids.sql
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: text
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer String
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur sp_get_keylist_str
                                                                                                                                                                                                                            BeschreibungLiefert einen String aus einem Unterselect +
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. ausgangswert varchar (Ein String, der null sein kann)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. ausgangsfeld varchar (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_get_keylist_str_short_pg.sql
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_get_keylist_str_short_ids.sql
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: text
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer String
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur sp_get_subquery_str
                                                                                                                                                                                                                            BeschreibungLiefert einen String aus einem Unterselect +
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. ausgangswert varchar (Ein String, der null sein kann)
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            3. ausgangsfeld varchar (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                            5. schluesseltab varchar (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                            7. schluesselfeld varchar (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                            9. datentab varchar (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                            11. where varchar (Ein String, der zurückgegeben wird, wenn der erste + null ist)
                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_get_subquery_str_pg.sql
                                                                                                                                                                                                                            Script$SUPERX_DIR/db/install/prozeduren/proc_get_subquery_str_ids.sql
                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            1. wert Typ: text
                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            KommentarDer String
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            Funktion / Prozedur sp_set_organigramm_eb
                                                                                                                                                                                                                            BeschreibungSetzt Ebenenspalte im Organigramm
                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Script$SUPERX_DIR/db/install/prozeduren/proc_set_organigramm_eb_pg.sql
                                                                                                                                                                                                                              Script$SUPERX_DIR/db/install/prozeduren/proc_set_organigramm_eb_ids.sql
                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Kommentar
                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                Funktion / Prozedur sp_set_organigramm_lehr
                                                                                                                                                                                                                                BeschreibungSetzt Attribute lehre für Lehreinheiten und übergeordnete Knoten im Organigramm
                                                                                                                                                                                                                                Parameter +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Script$SUPERX_DIR/db/install/prozeduren/proc_set_organigramm_lehr_pg.sql
                                                                                                                                                                                                                                  Script$SUPERX_DIR/db/install/prozeduren/proc_set_organigramm_lehr_ids.sql
                                                                                                                                                                                                                                  Rückgabe +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    Kommentar
                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                    Funktion / Prozedur sp_table_exists
                                                                                                                                                                                                                                    BeschreibungPrüft, ob Tabelle existiert
                                                                                                                                                                                                                                    Parameter +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                    1. tabelle char(200) (Der Tabellenname)
                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    Script$SUPERX_DIR/db/install/prozeduren/proc_sp_table_exists_pg.sql
                                                                                                                                                                                                                                    Script$SUPERX_DIR/db/install/prozeduren/proc_sp_table_exists_ids.sql
                                                                                                                                                                                                                                    Rückgabe +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                    1. wert Typ: boolean
                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    KommentarWahr / Falsch
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                    Funktion / Prozedur sp_trunc_string
                                                                                                                                                                                                                                    BeschreibungLiefert einen String mit vorgegebener Länge +
                                                                                                                                                                                                                                    Parameter +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                    1. ausgangswert text (Der String beliebiger Länge)
                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                    3. laenge integer (Die maximale Länge)
                                                                                                                                                                                                                                    4. +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    Script$SUPERX_DIR/db/install/prozeduren/proc_trunc_string_pg.sql
                                                                                                                                                                                                                                    Rückgabe +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                    1. wert Typ: text
                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    KommentarDer gekürzte String
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                    Funktion / Prozedur sp_trunc_string
                                                                                                                                                                                                                                    BeschreibungLiefert einen String mit vorgegebener Länge +
                                                                                                                                                                                                                                    Parameter +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                    1. ausgangswert char(255) (Der String beliebiger Länge)
                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                    3. laenge integer (Die maximale Länge)
                                                                                                                                                                                                                                    4. +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    Script$SUPERX_DIR/db/install/prozeduren/proc_trunc_string_ids.sql
                                                                                                                                                                                                                                    Rückgabe +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                    1. wert Typ: char(255)
                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    KommentarDer gekürzte String
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                    Funktion / Prozedur sp_update_sequence
                                                                                                                                                                                                                                    BeschreibungAktualisiert sequence-Felder in Postgres-Tabellen +
                                                                                                                                                                                                                                    Parameter +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                    1. tabname varchar(255) (Tabellenname)
                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    Script$SUPERX_DIR/db/install/prozeduren/proc_sp_update_sequence_pg.sql
                                                                                                                                                                                                                                    Rückgabe +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                    1. wert Typ: varchar(255)
                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    KommentarLetzter SQL-Ausdruck
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                    Funktion / Prozedur sp_user_orga
                                                                                                                                                                                                                                    BeschreibungErzeugt für eine übergebene Institution eine Tabelle + mit Kind-Institutionen (tmp_organigramm) für einen User, die für + den Themenbaum verwendet wird
                                                                                                                                                                                                                                    Parameter +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                    1. userid integer (Die ID des Users)
                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                    3. datum date (Der geforderte Stand des Organigramms)
                                                                                                                                                                                                                                    4. +
                                                                                                                                                                                                                                    5. p_sicht smallint (Sicht)
                                                                                                                                                                                                                                    6. +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    Script$SUPERX_DIR/db/install/prozeduren/proc_sp_user_orga_ids.sql
                                                                                                                                                                                                                                    Script$SUPERX_DIR/db/install/prozeduren/proc_sp_user_orga_pg.sql
                                                                                                                                                                                                                                    Rückgabe +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      KommentarErzeugt die Tabelle tmp_organigramm, ansonsten keine + Rückgabewerte
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                      Funktion / Prozedur sp_user_orga_child
                                                                                                                                                                                                                                      BeschreibungErzeugt für eine übergebene Insitution eine Tabelle mit + Kind-Institutionen (tmp_ch110_institut) für einen User, die in + Abfragen für Joins verwendet wird
                                                                                                                                                                                                                                      Parameter +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                      1. userid integer (Die ID des Users)
                                                                                                                                                                                                                                      2. +
                                                                                                                                                                                                                                      3. datum date (Der geforderte Stand des Organigramms)
                                                                                                                                                                                                                                      4. +
                                                                                                                                                                                                                                      5. sicht smallint (Sicht)
                                                                                                                                                                                                                                      6. +
                                                                                                                                                                                                                                      7. key_apnr char(10) (Übergebene Institution)
                                                                                                                                                                                                                                      8. +
                                                                                                                                                                                                                                      9. erlaubt smallint (erlaubt-Kennzeichen)
                                                                                                                                                                                                                                      10. +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      Script$SUPERX_DIR/db/install/prozeduren/proc_sp_user_orga_child_ids.sql
                                                                                                                                                                                                                                      Script$SUPERX_DIR/db/install/prozeduren/proc_sp_user_orga_child_pg.sql
                                                                                                                                                                                                                                      Rückgabe +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        KommentarErzeugt die Tabelle tmp_ch110_institut, ansonsten keine + Rückgabewerte
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                        Funktion / Prozedur sp_user_themen
                                                                                                                                                                                                                                        BeschreibungErzeugt für einen übergebenen User den Themenbaum +
                                                                                                                                                                                                                                        Parameter +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                        1. userid integer (Die ID des Users)
                                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                                        3. datum date (Der geforderte Stand des Themenbaums)
                                                                                                                                                                                                                                        4. +
                                                                                                                                                                                                                                        5. p_makros smallint (Makro)
                                                                                                                                                                                                                                        6. +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Script$SUPERX_DIR/db/install/prozeduren/proc_sp_user_themen_pg.sql
                                                                                                                                                                                                                                        Script$SUPERX_DIR/db/install/prozeduren/proc_sp_user_themen_ids.sql
                                                                                                                                                                                                                                        Rückgabe +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          KommentarErzeugt die Tabelle tmp_themenbaum, ansonsten keine + Rückgabewerte
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          Funktion / Prozedur sp_view_exists
                                                                                                                                                                                                                                          BeschreibungPrüft, ob View existiert
                                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. tabelle char(200) (Der View-Name)
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Script$SUPERX_DIR/db/install/prozeduren/proc_sp_view_exists_pg.sql
                                                                                                                                                                                                                                          Script$SUPERX_DIR/db/install/prozeduren/proc_sp_view_exists_ids.sql
                                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert Typ: smallint
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          KommentarWahr=1 / Falsch=0
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          Funktion / Prozedur string_not_null
                                                                                                                                                                                                                                          BeschreibungLiefert einen Leerstring, wenn Parameter null ist (für + Stringverkettungen)
                                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert char (Ein String)
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          ScriptCREATE or replace FUNCTION string_not_null(char) RETURNS text STABLE + AS 'select $1::text where $1 is not null union select '''' where $1 is null;' LANGUAGE sql; +
                                                                                                                                                                                                                                          Scriptcreate procedure string_not_null(p_str char(255)) + returning char(255); + + return nvl(p_str,''); +end procedure; +
                                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert Typ: char
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          KommentarDer String
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          Funktion / Prozedur string_not_null
                                                                                                                                                                                                                                          BeschreibungLiefert einen Leerstring, wenn Parameter null ist (für + Stringverkettungen)
                                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert text (Ein String)
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Script +CREATE or replace FUNCTION string_not_null(text) RETURNS text STABLE + AS 'select $1::text where $1 is not null union select '''' where $1 is null;' LANGUAGE sql; + +
                                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert Typ: text
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          KommentarDer String
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          Funktion / Prozedur string_not_null
                                                                                                                                                                                                                                          BeschreibungLiefert einen Leerstring, wenn Parameter null ist (für + Stringverkettungen)
                                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert varchar (Ein String)
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          ScriptCREATE or replace FUNCTION string_not_null(varchar) RETURNS text STABLE + AS 'select $1::text where $1 is not null union select '''' where $1 is null;' LANGUAGE sql; +
                                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert Typ: varchar
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          KommentarDer String
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          Funktion / Prozedur string_not_null
                                                                                                                                                                                                                                          BeschreibungLiefert einen Leerstring, wenn Parameter null ist (für + Stringverkettungen)
                                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert integer (Eine Ganzzahl)
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Script +CREATE or replace FUNCTION string_not_null(integer) RETURNS text STABLE + AS 'select $1::text where $1 is not null union select '''' where $1 is null;' LANGUAGE sql; + +
                                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert Typ: text
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          KommentarDer String
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          Funktion / Prozedur suchen_ersetzen
                                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. Text text (Ein String)
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          3. alt text (Alter String der ersetzt werden soll. )
                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                          5. neu text (Neuer String)
                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          ScriptCreate or replace Function suchen_ersetzen(text,text,text) returns text +as ' + Declare zs text; + Declare k integer; + Declare s1 text; + Declare alt text; + Declare neu text; + BEGIN + s1:=$1; + alt:=$2; + neu:=$3; + k := position(alt in s1); + While k > 0 loop + zs := substring(s1, 1, k - 1); +s1 := zs || neu || substring(s1, k + Length(alt), Length(s1) - k - Length(alt) + 1); +k := position(alt in s1); + END LOOP; + return s1; + END; + ' LANGUAGE plpgsql; +
                                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert Typ: text
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          KommentarDer Zielstring
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          Funktion / Prozedur time_stamp
                                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. datumzeit text (Ein Timestamp als String (German locale) + )
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          ScriptCreate or replace Function time_stamp(text) RETURNS timestamptz STABLE + AS 'select to_timestamp($1,''DD.MM.YYYY HH24.MI.SS'')' LANGUAGE sql; +
                                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert Typ: timestamptz
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          KommentarDer Timestamp
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          Funktion / Prozedur timestamp_str
                                                                                                                                                                                                                                          BeschreibungLiefert einen timestamp als String (deutsche Locale) +
                                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert timestamptz (Ein timestamp)
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          ScriptCREATE or replace FUNCTION timestamp_str(timestamptz) RETURNS text STABLE + AS 'select to_char($1,''DD.MM.YYYY HH24:MI:SS '');' LANGUAGE sql; +
                                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert Typ: text
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          KommentarDer String
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          Funktion / Prozedur timestamp_to_date
                                                                                                                                                                                                                                          BeschreibungKonvertiert von timestamp nach date.
                                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert timestamtz (Ein timestamtz-Wert)
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          ScriptCREATE or replace FUNCTION timestamp_to_date(timestamptz) RETURNS date STABLE +AS 'select to_date(day($1)||''.'' || month($1) || ''.'' || year($1),''DD.MM.YYYY'')' LANGUAGE sql; +
                                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert Typ: float
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          KommentarDer Float-Wert
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          Funktion / Prozedur to_number
                                                                                                                                                                                                                                          Beschreibungto_number -Funktion für IDS
                                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. ausgangswert char (Der String beliebiger Länge)
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          3. text char (Die maximale Länge)
                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Script$SUPERX_DIR/db/install/prozeduren/proc_to_number_ids.sql
                                                                                                                                                                                                                                          Rückgabe +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          1. wert Typ: integer
                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          KommentarZahl
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          Funktion / Prozedur today
                                                                                                                                                                                                                                          Beschreibung
                                                                                                                                                                                                                                          Parameter +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            ScriptCreate or replace Function today() RETURNS date STABLE + AS 'select current_date ' LANGUAGE sql; +
                                                                                                                                                                                                                                            Rückgabe +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                            1. wert Typ: datum
                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            KommentarDas aktuelle Datum als Timestamp
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                            Funktion / Prozedur today
                                                                                                                                                                                                                                            BeschreibungToday() -Funktion für IDS
                                                                                                                                                                                                                                            Parameter +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Script$SUPERX_DIR/db/install/prozeduren/proc_today_ids.sql
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert Typ: date
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarHeutiges Datum
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              Funktion / Prozedur trim_all_whitespace
                                                                                                                                                                                                                                              BeschreibungEntfernt alle Whitespace Zeichen an Anfang und Ende einer Zeichenkette. Dabei werden auch Tabs, Zeilenumbrüche und spezielle Unicode-Spaces entfernt.
                                                                                                                                                                                                                                              Parameter +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. string varchar (Die Zeichenkette, von der am Anfang und Ende alle Whitepaces entfernt werden sollen)
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Script$SUPERX_DIR/db/install/prozeduren/trim_all_whitespace_pg.sql
                                                                                                                                                                                                                                              Script$SUPERX_DIR/db/install/prozeduren/trim_all_whitespace_ids.sql
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. string Typ: varchar
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarDie Zeichenkette ohne Whitespace am Anfang und Ende
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              Funktion / Prozedur val
                                                                                                                                                                                                                                              BeschreibungLiefert einen String als Zahl (analog Basic-Funktion + val). Hat gegenüber to_number den Vorteil, dass man die Länge des + Strings nicht kennen muss. Dafür klappt es nur bei Integer-Werten. +
                                                                                                                                                                                                                                              Parameter +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert text (Eine String-Repräsentation einer Ganzzahl + )
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Script +CREATE or replace FUNCTION val(text) RETURNS integer STABLE + AS 'select to_number($1,repeat(''9'',length($1) ))::integer where trim($1) !='''' and $1 ~ ''0*[0-9][0-9]*'' ' LANGUAGE sql; +
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert Typ: integer
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarDie Zahl
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              Funktion / Prozedur val
                                                                                                                                                                                                                                              BeschreibungLiefert einen String als Zahl (analog Basic-Funktion + val). Hat gegenüber to_number den Vorteil, dass man die Länge des + Strings nicht kennen muss. Dafür klappt es nur bei Integer-Werten. +
                                                                                                                                                                                                                                              Parameter +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert char(255) (Eine String-Repräsentation einer Ganzzahl + )
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Script +CREATE or replace FUNCTION val(char(255)) RETURNS integer STABLE + AS 'select to_number($1,repeat(''9'',length($1) ))::integer where trim($1) !='''' and $1 ~ ''0*[0-9][0-9]*'' ' LANGUAGE sql; +
                                                                                                                                                                                                                                              Script + create procedure val(p_str char(255)) + returning integer; +define p_val integer ; +let p_val=(select p_str::integer from xdummy); + return p_val::integer; +end procedure; +
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert Typ: integer
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarDie Zahl
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              Funktion / Prozedur val
                                                                                                                                                                                                                                              BeschreibungLiefert einen String als Zahl (analog Basic-Funktion + val). Hat gegenüber to_number den Vorteil, dass man die Länge des + Strings nicht kennen muss. Dafür klappt es nur bei Integer-Werten. +
                                                                                                                                                                                                                                              Parameter +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert varchar(255) (Eine String-Repräsentation einer Ganzzahl + )
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Script +CREATE or replace FUNCTION val(varchar(255)) RETURNS integer STABLE + AS 'select to_number($1,repeat(''9'',length($1) ))::integer where trim($1) !='''' and $1 ~ ''0*[0-9][0-9]*''' LANGUAGE sql; +
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert Typ: integer
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarDie Zahl
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              Funktion / Prozedur val
                                                                                                                                                                                                                                              BeschreibungLiefert eine Zahl als Zahl (für PG/IDS-Kompatibilität) +
                                                                                                                                                                                                                                              Parameter +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert integer (Eine Ganzzahl)
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Script +CREATE or replace FUNCTION val(integer) RETURNS integer STABLE + AS 'select $1::integer ' LANGUAGE sql; +
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert Typ: integer
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarDie Zahl
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              Funktion / Prozedur val
                                                                                                                                                                                                                                              BeschreibungLiefert eine Zahl als Zahl (für PG/IDS-Kompatibilität) +
                                                                                                                                                                                                                                              Parameter +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert smallint (Eine Ganzzahl)
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Script +CREATE or replace FUNCTION val(smallint) RETURNS integer STABLE + AS 'select $1::integer ' LANGUAGE sql; +
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert Typ: integer
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarDie Zahl
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              Funktion / Prozedur week
                                                                                                                                                                                                                                              Beschreibung
                                                                                                                                                                                                                                              Parameter +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. datum date (Ein Datumswert)
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              ScriptCreate or replace Function week(date) RETURNS smallint STABLE + AS 'select extract(week from $1)::smallint ' LANGUAGE sql; +
                                                                                                                                                                                                                                              Script +CREATE FUNCTION week(dt date) +RETURNS smallint +WITH(NOT VARIANT) + +DEFINE day1 date; +DEFINE nbdays int; + +LET day1 = MDY(1, 1, YEAR(dt)); +LET nbdays = dt - day1; + +RETURN 1 + (nbdays + WEEKDAY(day1)) / 7; + +END FUNCTION; + +
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert Typ: smallint
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarDie Woche als Smallint
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              Funktion / Prozedur week
                                                                                                                                                                                                                                              Beschreibung
                                                                                                                                                                                                                                              Parameter +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. datum timestamp (Ein Datumswert)
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              ScriptCreate or replace Function week(timestamptz) RETURNS smallint STABLE + AS 'select extract(week from $1)::smallint ' LANGUAGE sql; +
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert Typ: smallint
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarDie Woche als Smallint
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              Funktion / Prozedur weekday
                                                                                                                                                                                                                                              Beschreibung
                                                                                                                                                                                                                                              Parameter +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. datum date (Ein Datumswert)
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              ScriptCreate or replace Function weekday(date) RETURNS text STABLE + AS 'select to_char($1,''Dy'')::text ' LANGUAGE sql; +
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert Typ: text
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarDer Wochentag (Mon, Tue...) als String (englisch) +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              Funktion / Prozedur weekday
                                                                                                                                                                                                                                              Beschreibung
                                                                                                                                                                                                                                              Parameter +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. datum timestamp (Ein Datumswert)
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              ScriptCreate or replace Function weekday(timestamptz) RETURNS text STABLE + AS 'select weekday(date($1))::text ' LANGUAGE sql; +
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert Typ: text
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarDer Wochentag (Mon, Tue...) als String
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              Funktion / Prozedur year
                                                                                                                                                                                                                                              Beschreibung
                                                                                                                                                                                                                                              Parameter +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. datum date (Ein Datumswert)
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              ScriptCreate or replace Function year(date) RETURNS smallint STABLE + AS 'select extract(year from $1)::smallint ' LANGUAGE sql; +
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert Typ: smallint
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarDas Jahr als Smallint
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              Funktion / Prozedur year
                                                                                                                                                                                                                                              Beschreibung
                                                                                                                                                                                                                                              Parameter +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. datum timestamp (Ein Datumswert)
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              ScriptCreate or replace Function year(timestamptz) RETURNS smallint STABLE + AS 'select extract(year from $1)::smallint 'LANGUAGE sql; +
                                                                                                                                                                                                                                              Rückgabe +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              1. wert Typ: smallint
                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              KommentarDas Jahr als Smallint
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                              +Masken +

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              • Maske Archivierte Daten
                                                                                                                                                                                                                                                Nummer 71820
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Benutzer - Abfragen
                                                                                                                                                                                                                                                Nummer 71320
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Benutzerdaten ändern
                                                                                                                                                                                                                                                Nummer 71010
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Benutzer im Detail
                                                                                                                                                                                                                                                Nummer 71040
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Benutzer - Institutionen
                                                                                                                                                                                                                                                Nummer 71340
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Benutzer - Sichten
                                                                                                                                                                                                                                                Nummer 71360
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Benutzer suchen
                                                                                                                                                                                                                                                Nummer 71030
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Benutzer von SuperX
                                                                                                                                                                                                                                                Nummer 750
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Bericht Benutzerrahmen
                                                                                                                                                                                                                                                Nummer 71420
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Bericht Gruppenrahmen
                                                                                                                                                                                                                                                Nummer 71440
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Beschriftung suchen
                                                                                                                                                                                                                                                Nummer 70170
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske BI-Datenbestand anzeigen
                                                                                                                                                                                                                                                Nummer 71410
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Datensieb erstellen
                                                                                                                                                                                                                                                Nummer 71520
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Download abrufen
                                                                                                                                                                                                                                                Nummer 71180
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Downloadstatistik
                                                                                                                                                                                                                                                Nummer 71200
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Download suchen
                                                                                                                                                                                                                                                Nummer 71190
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Entladeparameter bearbeiten
                                                                                                                                                                                                                                                Nummer 71260
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Feld ansehen
                                                                                                                                                                                                                                                Nummer 70580
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Feld bearbeiten
                                                                                                                                                                                                                                                Nummer 70640
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Feld kopieren
                                                                                                                                                                                                                                                Nummer 70630
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Feld löschen
                                                                                                                                                                                                                                                Nummer 70620
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Feld suchen
                                                                                                                                                                                                                                                Nummer 70570
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Gastzugang einrichten
                                                                                                                                                                                                                                                Nummer 71770
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Gruppe einrichten
                                                                                                                                                                                                                                                Nummer 71120
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Gruppe kopieren
                                                                                                                                                                                                                                                Nummer 71220
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Gruppe löschen
                                                                                                                                                                                                                                                Nummer 71140
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Gruppen - Benutzer
                                                                                                                                                                                                                                                Nummer 71380
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Gruppen - Sachgebiete
                                                                                                                                                                                                                                                Nummer 71400
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Gruppe suchen
                                                                                                                                                                                                                                                Nummer 71050
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Hochschul-Repository
                                                                                                                                                                                                                                                Nummer 71560
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Konstanten bearbeiten
                                                                                                                                                                                                                                                Nummer 71500
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Ladejob ausführen
                                                                                                                                                                                                                                                Nummer 71540
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Maske kopieren
                                                                                                                                                                                                                                                Nummer 70350
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Maske löschen
                                                                                                                                                                                                                                                Nummer 70370
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Maske suchen
                                                                                                                                                                                                                                                Nummer 70510
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Nutzungsstatistik - Berichte
                                                                                                                                                                                                                                                Nummer 71680
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Organigrammquelle bearbeiten
                                                                                                                                                                                                                                                Nummer 71480
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Organisationseinheiten suchen
                                                                                                                                                                                                                                                Nummer 71080
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske OrgUnitTests
                                                                                                                                                                                                                                                Nummer 71640
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Passwort ändern
                                                                                                                                                                                                                                                Nummer 70060
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Prüfprotokoll Administration
                                                                                                                                                                                                                                                Nummer 71660
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Sicht suchen
                                                                                                                                                                                                                                                Nummer 70160
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Stammdaten umschlüsseln
                                                                                                                                                                                                                                                Nummer 71800
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Stammdatenverwaltung
                                                                                                                                                                                                                                                Nummer 71620
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Stylesheet suchen
                                                                                                                                                                                                                                                Nummer 71000
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Tabelle ausgeben
                                                                                                                                                                                                                                                Nummer 71280
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Tabelle hochladen (CSV)
                                                                                                                                                                                                                                                Nummer 71240
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Tabelle suchen
                                                                                                                                                                                                                                                Nummer 71100
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Test abhaengiger Felder
                                                                                                                                                                                                                                                Nummer 71600
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Themenbaum-Eintrag suchen
                                                                                                                                                                                                                                                Nummer 71090
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Uploadprotokoll
                                                                                                                                                                                                                                                Nummer 71300
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske User einrichten
                                                                                                                                                                                                                                                Nummer 70970
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske User-Institutionen
                                                                                                                                                                                                                                                Nummer 70460
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske User löschen
                                                                                                                                                                                                                                                Nummer 70990
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Maske Verwundbarkeitstest
                                                                                                                                                                                                                                                Nummer 71580
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Schnittstellenbeschreibung

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              +Installation +

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Folgende Tabellen werden bei der Installation geladen:

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              • +aggregierung +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/aggregierung.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +masken_felder_bez +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/masken_felder_bez.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +sachgebiete +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/sachgebiete.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +sachgeb_maske_bez +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/sachgeb_maske_bez.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +user_masken_bez +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/user_masken_bez.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +user_sachgeb_bez +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/user_sachgeb_bez.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +xdummy +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/xdummy.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +groupinfo +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/groupinfo.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +user_group_bez +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/user_group_bez.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +group_sachgeb_bez +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/group_sachgeb_bez.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +group_masken_bez +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/group_masken_bez.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +aggre_bland +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/aggre_bland.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +cif +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/cif.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +cifx +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/cifx.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +felderinfo +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/felderinfo.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +hochschulinfo +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/hochschulinfo.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +maske_system_bez +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/maske_system_bez.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +maskeninfo +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/maskeninfo.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +proto_funktion +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/proto_funktion.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +systeminfo +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/systeminfo.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +user_einstellungen +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/user_einstellungen.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +userinfo +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/userinfo.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +themenbaum +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/themenbaum.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +themenbaum_bak +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/themenbaum_bak.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +nachricht +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/nachricht.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +menu_element +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/menu_element.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +organigramm +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/organigramm.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +user_institution +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/user_institution.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +protokoll +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/protokoll.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +trans_inst +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/trans_inst.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +konstanten +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/konstanten.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +lehreinheit_inst +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/lehreinheit_inst.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +sx_mask_style +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/sx_mask_style.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +sichten +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/sichten.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +fm_templates +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/fm_templates.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +sx_captions +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/sx_captions.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +sx_portlet +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/sx_portlet.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +sx_repository +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/sx_repository.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_studienfach_land +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_studienfach_land.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_abschluss3steller_land +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_abschluss3steller_land.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_abschluss2steller +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_abschluss2steller.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_studienfach +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_studienfach.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_studienbereich +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_studienbereich.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_staat +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_staat.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_kontinent +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_kontinent.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              +Upgrade +

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Folgende Tabellen werden bei dem Upgrade geladen:

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              • +k_astat_studienfach_land +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_studienfach_land.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_abschluss3steller_land +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_abschluss3steller_land.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_abschluss2steller +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_abschluss2steller.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_studienfach +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_studienfach.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_studienbereich +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_studienbereich.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_staat +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_staat.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +k_astat_kontinent +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/k_astat_kontinent.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +dim_datum +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/dim_datum.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • +aggre_bland +
                                                                                                                                                                                                                                                wird geladen aus: $SUPERX_DIR/db/install/schluesseltabellen/release_unloads/aggre_bland.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              +ETL-Routine +

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Folgende Tabellen werden in der ETL-Routine geladen:

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              • +kern_cifx_neu +
                                                                                                                                                                                                                                                wird geladen aus: $KERN_LOAD_PFAD/unl/cifx.unl
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              (c) Projektgruppe SuperX

                                                                                                                                                                                                                                              + + diff --git a/superx/WEB-INF/conf/edustore/db/install/conf/kern.xml b/superx/WEB-INF/conf/edustore/db/install/conf/kern.xml index af763f4..432fbb6 100644 --- a/superx/WEB-INF/conf/edustore/db/install/conf/kern.xml +++ b/superx/WEB-INF/conf/edustore/db/install/conf/kern.xml @@ -1,6 +1,6 @@ - @@ -20,7 +20,7 @@ - +
                                                                                                                                                                                                                                              @@ -183,7 +183,7 @@
                                                                                                                                                                                                                                              + typ="Schlüsseltabelle" releaseUnload="demo"> Ein Verzeichnis der Modul-Versionen nach dem Schema der HIS eG. @@ -191,7 +191,7 @@ - + @@ -300,7 +300,7 @@ notnull="true" description="Sortiernummer"> kann für Sortierungen benutzt werden - Angabe einer Tabelle mit key,parent,name,gueltig_seit,gueltig_bis oder Prozedur, die mit @@ -618,7 +618,7 @@ notnull="false" /> + description="Recht wird von externem System (HISinOne) gesetzt und entfernt" /> @@ -664,7 +664,7 @@ default="" notnull="false" /> + description="Recht wird von externem System (HISinOne) gesetzt und entfernt" /> @@ -923,7 +923,7 @@ notnull="false" description="Gruppe" /> + description="Recht wird von externem System (HISinOne) gesetzt und entfernt"> @@ -1241,6 +1241,10 @@ + + + + @@ -1410,7 +1414,7 @@ notnull="false" /> - @@ -1441,7 +1445,7 @@
                                                                                                                                                                                                                                              + typ="Schlüsseltabelle" releaseUnload="demo"> @@ -2109,7 +2113,7 @@ notnull="false" description="obsoletes Feld" currentlyUsed="false" /> + description="Recht wird von externem System (HISinOne) gesetzt und entfernt"> @@ -2203,7 +2207,7 @@ Nur deskriptiv - + @@ -2502,6 +2506,10 @@ notnull="false" description="Datenquelle (JR)"> Wird nur bei JR ausgewertet. Mögliche Werte: RS,XMLSOURCE + + + @@ -2709,7 +2717,7 @@ + description="Recht wird von externem System (HISinOne) gesetzt und entfernt" /> @@ -2747,7 +2755,7 @@ notnull="true" description="Rechte für eine Art von Sichten geben" /> + description="Recht wird von externem System (HISinOne) gesetzt und entfernt" /> @@ -2954,8 +2962,8 @@ notnull="false" description="Sortierschlüssel 3" /> - + -
                                                                                                                                                                                                                                              Parameter zum Steuern des Entladevorgangs @@ -4022,6 +4030,7 @@ + @@ -4632,7 +4641,7 @@
                                                                                                                                                                                                                                              - +
                                                                                                                                                                                                                                              @@ -4660,7 +4669,7 @@
                                                                                                                                                                                                                                              - +
                                                                                                                                                                                                                                              @@ -4699,7 +4708,7 @@
                                                                                                                                                                                                                                              - +
                                                                                                                                                                                                                                              @@ -4722,7 +4731,7 @@
                                                                                                                                                                                                                                              - +
                                                                                                                                                                                                                                              @@ -4957,14 +4966,14 @@ Matrikelnummer der gelöschten Entity - Entiy-Klasse des gelöschten Objekts in HisInOne + Entiy-Klasse des gelöschten Objekts in HISinOne Zeitpunkt der Löschung in HISinOne Zeitpunkt der Löschung in der BI - Job-Ausführung in HisInOne von der Delete-Event ausgelöst wird + Job-Ausführung in HISinOne von der Delete-Event ausgelöst wird @@ -5322,40 +5331,8 @@
                                                                                                                                                                                                                                              - - - - - - - -
                                                                                                                                                                                                                                              - - Mailaccount - - - - - - - - - - - - - - wird per Reflection aufgerufen - - - wird per Reflection aufgerufen - - wird per Reflection aufgerufen - - -
                                                                                                                                                                                                                                              - @@ -5425,7 +5402,61 @@
                                                                                                                                                                                                                                              - - - + + Farbschema für Diagramm in BI-Analysen festlegen + + + + + + +
                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                              + + + + + + + + + + +
                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                              @@ -5462,8 +5532,8 @@ Uploads/Downloads verwalten Abfragen zur Feld-Verwaltung Benutzereinstellungen (Passwort ändern etc.) - Spezielle Funktionen für die Entwicklung Abfragen zur Stammdatenverwaltung + Abfragen zum Datenmanagement @@ -8699,6 +8769,11 @@ where dimension_bp_id=(select D.tid from dimension_bp D where D.apnr='bluep_absc + + + + @@ -9800,6 +9875,48 @@ where dimension_bp_id=(select D.tid from dimension_bp D where D.apnr='bluep_absc 18.08.2022 INFORMIX + + + + $SUPERX_DIR/db/install/masken + D. Quathamer + 02.05.2023 + POSTGRES + + + $SUPERX_DIR/db/install/masken + D. Quathamer + 02.05.2023 + INFORMIX + + + + + $SUPERX_DIR/db/install/masken + I. John + 12.05.2023 + POSTGRES + + + $SUPERX_DIR/db/install/masken + I. John + 12.05.2023 + INFORMIX + + + + + $SUPERX_DIR/db/install/masken + I. John + 10.11.2023 + POSTGRES + + + $SUPERX_DIR/db/install/masken + I. John + 10.11.2023 + INFORMIX +
                                                                                                                                                                                                                                              @@ -10027,6 +10144,11 @@ where dimension_bp_id=(select D.tid from dimension_bp D where D.apnr='bluep_absc + + + > select 'Student/-in' from xdummy UNION select 'Doktorand/-in' from xdummy;^^^ +71822^Gelöscht in HISinOne ab^30^0^0^130^80^1^date^10^0^0^^^^ +71823^Gelöscht in HISinOne-BI^40^0^0^130^80^1^date^10^0^0^^^^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71820_maskeninfo.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71820_maskeninfo.unl index 7b2b4bb..a47d74d 100644 --- a/superx/WEB-INF/conf/edustore/db/install/masken/71820_maskeninfo.unl +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71820_maskeninfo.unl @@ -36,7 +36,7 @@ FROM hisinone_deleted_entity H\ WHERE H.job IS NOT NULL AND btrim(H.job) !=''\ ;\ UPDATE tmp_archive set rolle='Student/-in' WHERE entity = 'cm.stu.Student';\ -UPDATE tmp_archive set rolle='Doktorand/-in' WHERE entity = 'cm.doc.DoctoralProgram';\ +UPDATE tmp_archive set rolle='Doktorand/-in' WHERE entity = 'cm.doc.DoctoralCandidate';\ \ INSERT into tmp_ergebnis (person_id,\ matrikel_nr,\ @@ -78,10 +78,10 @@ Column CID=1 heading_text=" Matrikel Nr. \\n(Student) " center_heading\ Column CID=1 heading_text=" Rolle " center_heading\ row_selectable col_selectable heading_platform readonly\ width=10 text_size=200\ -Column CID=1 heading_text=" Gelöscht in HISInOne " center_heading\ +Column CID=1 heading_text=" Gelöscht in HISinOne " center_heading\ row_selectable col_selectable heading_platform readonly\ width=10 text_size=200\ -Column CID=1 heading_text=" Gelöscht in HISInOne-BI " center_heading\ +Column CID=1 heading_text=" Gelöscht in HISinOne-BI " center_heading\ row_selectable col_selectable heading_platform readonly\ width=10 text_size=200\ @@@^ ^ ^Archivierte Daten^drop table tmp_ergebnis;^^1^440^360^^1^ ^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71840_felderinfo.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71840_felderinfo.unl new file mode 100644 index 0000000..c038f14 --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71840_felderinfo.unl @@ -0,0 +1,8 @@ +71840^Bezugszeit bis^50^0^0^140^100^1^integer^30^1^1^<> select tid, eintrag from semester order by tid DESC;^ ^<> select tid,eintrag from semester where today() between sem_beginn and sem_ende;^ +71841^Bezugszeit von^20^0^0^140^100^1^integer^30^1^1^<> select tid, eintrag from semester order by tid DESC;^ ^<> select tid,eintrag from semester where today() between sem_beginn and sem_ende;^ +71842^Archivierungsdatum^10^330^-1^140^100^1^date^30^1^0^^ ^<> select today() from xdummy;^ +71850^Filter Studierende^120^0^0^140^150^1^sql^20^0^13^<> SELECT id,caption from sx_repository where aktiv =1 and today() between gueltig_seit and gueltig_bis and art='SOS_STUD_FILTER' order by 2;^ ^ ^ +71856^Datenblatt^2^0^0^140^130^1^sql^30^1^1^<> select name, caption from sx_tables where name in ('sos_stg_aggr','sos_lab_pord','sos_lab_stg','lm_konto_pro_fs') order by name;^ ^<> select 'Fächer','nach Fach' from xdummy where (select count(*) from sos_gewichtungsvariante)=0 union select 'Studiengang','nach Studiengang' from xdummy where (select count(*) from sos_gewichtungsvariante)>0^ +71857^##line##^3^0^0^100^100^1^char^5000^0^8^^ ^1^ +71858^##line##^8^0^0^100^100^1^char^5000^0^8^^ ^1^ +71859^Kommentar^60^0^0^150^70^1^char^200^0^0^^ ^ ^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71840_maske_system_bez.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71840_maske_system_bez.unl new file mode 100644 index 0000000..f3d8530 --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71840_maske_system_bez.unl @@ -0,0 +1 @@ +71840^7^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71840_masken_felder_bez.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71840_masken_felder_bez.unl new file mode 100644 index 0000000..06e696c --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71840_masken_felder_bez.unl @@ -0,0 +1,20 @@ +71840^71840^ +71840^71841^ +71840^71842^ +71840^71843^ +71840^71844^ +71840^71845^ +71840^71846^ +71840^71847^ +71840^71848^ +71840^71849^ +71840^71850^ +71840^71851^ +71840^71852^ +71840^71853^ +71840^71854^ +71840^71855^ +71840^71856^ +71840^71857^ +71840^71858^ +71840^71859^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71840_maskeninfo.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71840_maskeninfo.unl new file mode 100644 index 0000000..da88fc8 --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71840_maskeninfo.unl @@ -0,0 +1,350 @@ +71840^Datenblatt archivieren^--freemarker template\ +<#include "SQL_lingua_franca"/>\ +<#include "SuperX_general"/>\ +\ +\ +\ +\ + \ + select sp_table_exists('<>_archiv') from xdummy\ + \ + \ + select count(*) from sx_fields where table_name='<>_archiv'\ + \ + \ + \ + select name,field_type,tid\ + from sx_fields where table_name='<>'\ + order by tid;\ + \ + \ + \ + select zeitfeld from arch_table\ + where '<>' = name\ + \ + \ + \ + select \ + /*'S'::varchar(255) as art, -- Bezugsart (Semester S, Akad. Jahr A, Jahr J, Quartal Q, Monat M)\ + tid as value from semester\ + where tid between <> and <>*/\ + -- /*ToDo: Bezugszeit für Jahresangabe*/\ + ;\ + \ +\ +\ +create temp table tmp_ergebnis(\ +tid serial,\ +nachricht varchar(255),\ +anzahl integer\ +);\ +\ +create temp table tmp_ueberschneidung(\ + bezugsart varchar(255),\ + bezugszeit_value integer,\ + exists integer\ +);\ +\ +<#if zieltabelle_archiv_exists==1>\ +\ + <#foreach z in bezugszeit>\ + insert into tmp_ueberschneidung\ + select '${z.art}',${z.value},\ + 1\ + from xdummy\ + where ${z.value} in (select distinct ${zeitfeld} from <>_archiv where archivierung_datum=<>)\ + union select '${z.art}',${z.value},\ + 0\ + from xdummy\ + where ${z.value} not in (select distinct ${zeitfeld} from <>_archiv where archivierung_datum=<>)\ + ;\ + \ +\ +<#else>\ + \ + <#foreach z in bezugszeit>\ + insert into tmp_ueberschneidung\ + select '${z.art}',${z.value},\ + 0\ + from xdummy\ + ;\ + \ + \ +\ +\ +<#assign quelltabelle="<>" />\ +<#assign zieltabelle="<>_archiv" />\ +<#assign archivierung_datum="date_val(<>)" />\ +<#if zieltabelle_archiv_exists==0>\ +\ +select Q.*, ${archivierung_datum} as archivierung_datum\ +into ${zieltabelle}\ +from ${quelltabelle} Q,\ + arch_table A\ +where 1=1\ + and '${quelltabelle}' = A.name\ +/* and ${zeitfeld} >= <> */\ +/* and ${zeitfeld} <= <> */\ +;\ +\ +insert into arch_datum (\ + arch_table,\ + datum,\ + bezugszeit_von,\ + bezugszeit_bis,\ + userinfo_id/*,\ + kommentar --<>*/\ + )\ +select\ + '${zieltabelle}',\ + (${archivierung_datum}::varchar(255) || ' ' || localtime(0)::varchar(255))::timestamptz,\ + <>,\ + <>,\ + <>/*,\ + <>*/\ +from xdummy\ +;\ +\ +update arch_datum set bezugsart=U.bezugsart \ +from tmp_ueberschneidung U\ +where arch_datum.bezugsart is null;\ +\ +insert into tmp_ergebnis(nachricht,anzahl)\ +select '${zieltabelle} erzeugt und befüllt. Folgende Zeiträume wurden archiviert:',count(*)\ +from ${zieltabelle};\ +\ +insert into tmp_ergebnis(nachricht,anzahl)\ +select \ + U.bezugszeit_value::varchar(255),\ + count(Q.*)\ +from \ + ${quelltabelle} Q,\ + tmp_ueberschneidung U\ +where \ + U.bezugszeit_value=Q.${zeitfeld}\ + and U.exists=0 \ +group by 1\ +order by 1\ +;\ +\ +<#else>\ +\ +<#assign target_fields="" />\ +<#foreach field in field_list>\ +<#assign target_fields=target_fields+field.name+"," />\ +\ +<#assign target_fields=target_fields+"" />\ +\ +\ +create temp table tmp_datum_exists(archivierung_datum date);\ +insert into tmp_datum_exists\ +select distinct archivierung_datum\ +from ${zieltabelle};\ +\ +insert into tmp_ergebnis(nachricht)\ +select 'Achtung: Die folgenden Zeiträume wurden zum Archivierungsdatum bereits archiviert und daher nicht erneut archiviert:' \ +from xdummy\ +where ${archivierung_datum} in (select distinct archivierung_datum\ +from ${zieltabelle})\ +and 1 in (select exists from tmp_ueberschneidung)\ +;\ +\ +insert into tmp_ergebnis(nachricht)\ +select 'Achtung: Dieses Datenblatt wurde zum Archivierungsdatum bereits archiviert. Der gewählte Zeitraum wurde zum Archivierungsdatum noch nicht archiviert.' \ +from xdummy\ +where ${archivierung_datum} in (select distinct archivierung_datum\ +from ${zieltabelle})\ +and 1 not in (select exists from tmp_ueberschneidung)\ +;\ +\ +insert into tmp_ergebnis(nachricht)\ +select bezugszeit_value::varchar(255) from tmp_ueberschneidung where exists=1 order by 1\ +;\ +\ +insert into ${zieltabelle}(\ +${target_fields} archivierung_datum\ +)\ +select ${target_fields} ${archivierung_datum} as archivierung_datum\ +from ${quelltabelle}\ +where 1=1\ +/* and ${zeitfeld} >= <> */\ +/* and ${zeitfeld} <= <> */\ +and ${zeitfeld} in (select bezugszeit_value from tmp_ueberschneidung where exists=0)\ +;\ +\ +insert into arch_datum (\ + arch_table,\ + datum,\ + bezugszeit_von,\ + bezugszeit_bis,\ + userinfo_id/*,\ + kommentar --<>*/\ + )\ +select\ + '${zieltabelle}',\ + (${archivierung_datum}::varchar(255) || ' ' || localtime(0)::varchar(255))::timestamptz,\ + <>,\ + <>,\ + <>/*,\ + <>*/\ +from xdummy\ +where \ + 0 in (select exists from tmp_ueberschneidung)\ +;\ +\ +update arch_datum set bezugsart=U.bezugsart \ +from tmp_ueberschneidung U\ +where arch_datum.bezugsart is null;\ +\ +insert into tmp_ergebnis(nachricht,anzahl)\ +select 'Für folgende Zeiträume wurden Datensätze in ${zieltabelle} eingefügt:',count(*)\ +from ${quelltabelle}\ +where 1=1\ +/* and ${zeitfeld} >= <> */\ +/* and ${zeitfeld} <= <> */\ +and ${zeitfeld} in (select bezugszeit_value from tmp_ueberschneidung where exists=0)\ +having count(*)>0\ +;\ +\ +insert into tmp_ergebnis(nachricht,anzahl)\ +select \ + U.bezugszeit_value::varchar(255),\ + count(Q.*)\ +from \ + ${quelltabelle} Q,\ + tmp_ueberschneidung U\ +where \ + U.bezugszeit_value=Q.${zeitfeld}\ + and U.exists=0 \ +group by 1\ +order by 1\ +;\ +/*\ +-- Folgender Code läuft nicht richtig, da alle Semester ohne Überschneidung betrachtet werden, auch wenn Daten vorhanden sind.\ +insert into tmp_ergebnis(nachricht)\ +select 'Es wurden keine Daten archiviert, da mindestens in einem gewählten Teilzeitraum keine Daten vorhanden sind.'\ +from ${quelltabelle}\ +where 1=1\ +/* and ${zeitfeld} >= <> */\ +/* and ${zeitfeld} <= <> */\ +and ${zeitfeld} in (select bezugszeit_value from tmp_ueberschneidung where exists=0)\ +having count(*)=0\ +;*/\ +\ +drop table tmp_datum_exists;\ +\ +\ +<#if zieltabelle_metadata_exist==0>\ +\ +\ +insert into sx_tables(name,\ + caption,\ + description,\ + table_type,\ + systeminfo_id,\ + systeminfo_orig,\ + thema,\ + sachgebiete_id)\ +select '${zieltabelle}',\ + trim(caption) || ' (Archiv)',\ + description,\ + table_type,\ + systeminfo_id,\ + systeminfo_orig,\ + thema,\ + sachgebiete_id\ +FROM sx_tables \ +where name='${quelltabelle}';\ +\ +insert into tmp_ergebnis(nachricht,anzahl)\ +select 'Metadaten Tabelle ${zieltabelle} Datensätze eingefügt',count(*)\ +from sx_tables\ +where name='${zieltabelle}';\ +\ +insert into sx_fields( table_name,\ + name,\ + caption,\ + description,\ + field_type,\ + field_size,\ + field_not_null,\ + currentlyused,\ + is_primarykey,\ + foreignkey_tab,\ + foreignkey_col,\ + foreignkey_int,\ + foreignkey_cap,\ + foreignkey_cond,\ + foreignkey_func,\ + check_integrity,\ + is_sum,\ + foreignkey_uniquename)\ +select \ + '${zieltabelle}',\ + name,\ + caption,\ + description,\ + field_type,\ + field_size,\ + field_not_null,\ + currentlyused,\ + is_primarykey,\ + foreignkey_tab,\ + foreignkey_col,\ + foreignkey_int,\ + foreignkey_cap,\ + foreignkey_cond,\ + foreignkey_func,\ + check_integrity,\ + is_sum,\ + foreignkey_uniquename\ +FROM sx_fields \ +where table_name='${quelltabelle}'\ + ;\ +insert into sx_fields( table_name,\ + name,\ + caption,\ + field_type,\ + field_not_null,\ + currentlyused,\ + is_primarykey,\ + check_integrity,\ + is_sum)\ +select \ + '${zieltabelle}',\ + 'archivierung_datum' as name,\ + 'Datum der Archivierung' as caption,\ + 'DATE' as field_type,\ + 0 as field_not_null,\ + 1 as currentlyused,\ + 0 as is_primarykey,\ + 0 as check_integrity,\ + 0 as is_sum\ +FROM xdummy\ + ;\ +\ + \ +insert into tmp_ergebnis(nachricht,anzahl)\ +select 'Metadaten Felder ${zieltabelle} Datensätze eingefügt',count(*)\ +from sx_fields\ +where table_name='${zieltabelle}';\ +\ +\ +\ +select tid,nachricht,anzahl from tmp_ergebnis order by 1;\ +\ +drop table tmp_ueberschneidung;^XIL List\ + sizable_columns horizontal_scrolling\ + drop_and_delete movable_columns \ + white_space_color=COLOR_WHITE fixed_columns=1\ + min_heading_height=40\ +Column CID=0 heading_text="Nr." center_heading\ + row_selectable heading_platform readonly\ + width=12 text_size=30\ +Column CID=0 heading_text="Hinweis" center_heading\ + row_selectable heading_platform readonly\ + width=50 text_size=30\ +Column CID=0 heading_text="Anzahl Datensätze" center_heading\ + row_selectable heading_platform readonly\ + width=12 text_size=30\ +@@@^Studienfach^Anzahl bzw. Anteil^Archivtabelle erzeugen und/oder Inhalte archivieren^drop table tmp_ergebnis;^^2^800^440^^1^ ^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71840_sachgeb_maske_bez.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71840_sachgeb_maske_bez.unl new file mode 100644 index 0000000..ab531b2 --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71840_sachgeb_maske_bez.unl @@ -0,0 +1 @@ +16^71840^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71860_felderinfo.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71860_felderinfo.unl new file mode 100644 index 0000000..b65a956 --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71860_felderinfo.unl @@ -0,0 +1,8 @@ +71860^Bezugszeit bis^50^0^0^140^100^1^integer^30^0^1^<> select tid, eintrag from semester order by tid DESC;^ ^<> select tid,eintrag from semester where today() between sem_beginn and sem_ende;^ +71861^Bezugszeit von^20^0^0^140^100^1^integer^30^0^1^<> select tid, eintrag from semester order by tid DESC;^ ^<> select tid,eintrag from semester where today() between sem_beginn and sem_ende;^ +71862^Archivierungsdatum^10^330^-1^140^100^1^date^30^0^0^^ ^<> select today() from xdummy;^ +71870^Filter Studierende^120^0^0^140^150^1^sql^20^0^999^<> SELECT id,caption from sx_repository where aktiv =1 and today() between gueltig_seit and gueltig_bis and art='SOS_STUD_FILTER' order by 2;^ ^ ^ +71876^Datenblatt^2^0^0^140^130^1^sql^30^1^1^<> select name, caption from sx_tables where name in (select name from arch_table) order by name;^ ^<> select 'Fächer','nach Fach' from xdummy where (select count(*) from sos_gewichtungsvariante)=0 union select 'Studiengang','nach Studiengang' from xdummy where (select count(*) from sos_gewichtungsvariante)>0^ +71877^##line##^3^0^0^100^100^1^char^5000^0^8^^ ^1^ +71878^##line##^8^0^0^100^100^1^char^5000^0^8^^ ^1^ +71879^Kommentar^60^0^0^150^70^1^char^200^0^999^^ ^ ^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71860_maske_system_bez.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71860_maske_system_bez.unl new file mode 100644 index 0000000..caeec30 --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71860_maske_system_bez.unl @@ -0,0 +1 @@ +71860^7^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71860_masken_felder_bez.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71860_masken_felder_bez.unl new file mode 100644 index 0000000..9a25345 --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71860_masken_felder_bez.unl @@ -0,0 +1,20 @@ +71860^71860^ +71860^71861^ +71860^71862^ +71860^71863^ +71860^71864^ +71860^71865^ +71860^71866^ +71860^71867^ +71860^71868^ +71860^71869^ +71860^71870^ +71860^71871^ +71860^71872^ +71860^71873^ +71860^71874^ +71860^71875^ +71860^71876^ +71860^71877^ +71860^71878^ +71860^71879^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71860_maskeninfo.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71860_maskeninfo.unl new file mode 100644 index 0000000..ef42e3e --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71860_maskeninfo.unl @@ -0,0 +1,115 @@ +71860^Übersicht Datenblatt-Archiv^--freemarker template\ +<#include "SQL_lingua_franca"/>\ +<#include "SuperX_general"/>\ +\ +\ +\ + \ + select zeitfeld from arch_table\ + where '<>' = name\ + \ + \ + \ + select distinct\ + AD.datum::date \ + from \ + arch_datum AD,\ + <>_archiv A\ + where 1=1\ + and A.${zeitfeld} >= AD.bezugszeit_von\ + and A.${zeitfeld} <= AD.bezugszeit_bis\ + /*and A.${zeitfeld} >= <>*/\ + /*and A.${zeitfeld} <= <>*/ \ + /*and AD.datum::date = <>*/\ + \ + \ +\ +\ +<#assign archivtabelle="<>_archiv" />\ +\ +\ +select \ + AD.arch_table,\ + AD.datum,\ + A.${zeitfeld} as zeitfeld,\ + AD.bezugsart,\ + U.name,\ + AD.kommentar,\ + 0::smallint as erstes_datum,\ + count (A.*) as anzahl\ +into temp tmp_ergebnis\ +from \ + arch_datum AD,\ + userinfo U,\ + ${archivtabelle} A\ +where \ + AD.userinfo_id=U.tid\ + and A.archivierung_datum=AD.datum::date\ + and A.${zeitfeld} >= AD.bezugszeit_von\ + and A.${zeitfeld} <= AD.bezugszeit_bis\ + /*and A.${zeitfeld} >= <>*/\ + /*and A.${zeitfeld} <= <>*/\ + /*and AD.arch_table = '<>_archiv'*/\ + /*and AD.datum::date = <>*/\ +group by 1,2,3,4,5,6,7\ +order by 2 desc\ +;\ +\ +<#foreach ad in archivierungsdatum>\ +\ + select zeitfeld,min(datum) as min_datum \ + into tmp_min_datum\ + from tmp_ergebnis\ + where datum::date = '${ad.datum}'\ + group by 1;\ +\ + update tmp_ergebnis set erstes_datum=1\ + where (zeitfeld,datum) in (select zeitfeld,min_datum\ + from tmp_min_datum);\ +\ + update tmp_ergebnis set anzahl=0\ + where erstes_datum=0\ + and datum::date = '${ad.datum}';\ + \ + drop table tmp_min_datum;\ +\ +\ +\ +select \ + arch_table,\ + datum,\ + zeitfeld,\ + bezugsart,\ + name,\ + kommentar,\ + anzahl\ +from tmp_ergebnis \ +order by datum desc, zeitfeld desc;\ +\ +drop table tmp_ergebnis;^XIL List\ + sizable_columns horizontal_scrolling\ + drop_and_delete movable_columns \ + white_space_color=COLOR_WHITE fixed_columns=1\ + min_heading_height=40\ +Column CID=0 heading_text="Archivtabelle" center_heading\ + row_selectable heading_platform readonly\ + width=12 text_size=30\ +Column CID=0 heading_text=" Archivierungsdatum" center_heading\ + row_selectable heading_platform readonly\ + width=50 text_size=30\ +Column CID=0 heading_text="Bezugszeit" center_heading\ + row_selectable heading_platform readonly\ + width=12 text_size=30\ +Column CID=0 heading_text="Bezugsart" center_heading\ + row_selectable heading_platform readonly\ + width=12 text_size=30\ +Column CID=0 heading_text="Archivierer" center_heading\ + row_selectable heading_platform readonly\ + width=12 text_size=30\ +Column CID=0 heading_text="Kommentar" center_heading\ + row_selectable heading_platform readonly\ + width=12 text_size=30\ +Column CID=0 heading_text="Anzahl archivierter Datensätze" center_heading\ + row_selectable heading_platform readonly\ + width=12 text_size=30\ +@@@^Studienfach^Anzahl bzw. Anteil^Liefert eine Übersicht aller archivierten Datenblätter.^ ^^2^800^440^^1^ ^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71860_sachgeb_maske_bez.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71860_sachgeb_maske_bez.unl new file mode 100644 index 0000000..4f0cbc0 --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71860_sachgeb_maske_bez.unl @@ -0,0 +1 @@ +16^71860^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71880_felderinfo.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71880_felderinfo.unl new file mode 100644 index 0000000..41773a8 --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71880_felderinfo.unl @@ -0,0 +1,3 @@ +71880^Download-ID^0^0^0^200^380^1^integer^30^1^0^^hidden^ ^ +71881^Download löschen?^1^0^0^200^100^1^integer^30^1^1^<> select 1, 'Ja' from xdummy\ +union select 2, 'Nein' from xdummy;^ ^<> select 2, 'Nein' from xdummy;^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71880_maske_system_bez.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71880_maske_system_bez.unl new file mode 100644 index 0000000..1bf0e5e --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71880_maske_system_bez.unl @@ -0,0 +1 @@ +71880^9^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71880_masken_felder_bez.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71880_masken_felder_bez.unl new file mode 100644 index 0000000..c26d196 --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71880_masken_felder_bez.unl @@ -0,0 +1,3 @@ +71880^71880^ +71880^71881^ +71880^71882^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71880_maskeninfo.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71880_maskeninfo.unl new file mode 100644 index 0000000..662ce1e --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71880_maskeninfo.unl @@ -0,0 +1,39 @@ +71880^Download löschen^--Freemarker Template\ +<#include "SQL_lingua_franca"/>\ +<#include "SuperX_general"/>\ +\ +-- Ist nur für User erlaubt, die Administratoren sind\ +--Autor: I. John\ +--Datum: 10.11.2023\ +\ +<#if <> == 1>\ +\ +BEGIN WORK;\ +\ +delete from sx_downloads where tid=<> and 1=(select administration from userinfo where tid=<>);\ +\ +delete from download_user_bez where download_id=<> and 1=(select administration from userinfo where tid=<>);\ +\ +delete from download_keyw_bez where download_id=<> and 1=(select administration from userinfo where tid=<>);\ +\ +delete from download_group_bez where download_id=<> and 1=(select administration from userinfo where tid=<>);\ +\ +select 'Löschen erfolgreich.' from xdummy;\ +\ +COMMIT;\ +\ +<#else>\ +\ +select 'Download nicht gelöscht. Zum Löschen bestätigen Sie mit ''Ja''.'\ +\ +^XIL List\ + drop_and_delete movable_columns sizable_columns horizontal_scrolling\ + white_space_color=COLOR_WHITE fixed_columns=2\ + min_heading_height=35\ +Column CID=0 heading_text="Ergebnis " center_heading\ + row_selectable col_selectable heading_platform readonly\ + width=50 text_size=100\ +Column CID=1 heading_text=" Wert " center_heading\ + row_selectable col_selectable heading_platform readonly\ + width=150 text_size=200\ +@@@^ ^ ^Eine vorhandene Maske löschen^ ^^2^440^360^^1^ ^ diff --git a/superx/WEB-INF/conf/edustore/db/install/masken/71880_sachgeb_maske_bez.unl b/superx/WEB-INF/conf/edustore/db/install/masken/71880_sachgeb_maske_bez.unl new file mode 100644 index 0000000..152903c --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/masken/71880_sachgeb_maske_bez.unl @@ -0,0 +1 @@ +8^71880^ diff --git a/superx/WEB-INF/conf/edustore/db/install/schluesseltabellen/kern_feste_konstanten_fuellen.sql b/superx/WEB-INF/conf/edustore/db/install/schluesseltabellen/kern_feste_konstanten_fuellen.sql index 11b945d..7892797 100644 --- a/superx/WEB-INF/conf/edustore/db/install/schluesseltabellen/kern_feste_konstanten_fuellen.sql +++ b/superx/WEB-INF/conf/edustore/db/install/schluesseltabellen/kern_feste_konstanten_fuellen.sql @@ -129,6 +129,13 @@ insert into tmp_konstanten(apnr, beschreibung, defaultvalue, description, system values (0, 'Nutzungsstatistiken', 0, 'Aktiviert das Loggen von Nutzungsdaten bezüglich der Berichte', 9, 'Konstanten_-_HISinOne-BI.xhtml',0, '0,aus' || ${newline} || '1,an', '2021.06', 'Zentrale Einstellungen', 0); +insert into tmp_konstanten(apnr, beschreibung, defaultvalue, description, systeminfo_id, doku_link, read_only, wertebereich, ab_version, gruppe, sachgebiete_id) +values (0, 'aufklappbarer Themenbaum', 0, 'aufklappbarer Themenbaum im XML-Frontend', 9, 'Konstanten_-_HISinOne-BI.xhtml',0, '0,aus' || ${newline} || '1,an', '2023.06', 'Zentrale Einstellungen', 0); + +insert into tmp_konstanten(apnr, beschreibung, defaultvalue, description, systeminfo_id, doku_link, read_only, wertebereich, ab_version, gruppe, sachgebiete_id) +values (0, 'CSV_Excel_ISO', 0, 'CSV-Export angepaßt für MS Excel (ISO-codiert)', 9, 'Konstanten_-_HISinOne-BI.xhtml',0, '0,aus' || ${newline} || '1,an', '2024.12', 'Zentrale Einstellungen', 0); + + <#assign defaultOrgaQuelle=6/> --als Default wird erstmal HisInOne genommen <#if K_PLATTFORM?exists&&K_PLATTFORM=0> --SuperX-Standalone <#assign defaultOrgaQuelle=12> -- manuell diff --git a/superx/WEB-INF/conf/edustore/db/install/schluesseltabellen/release_unloads/k_astat_abschl_grp.unl b/superx/WEB-INF/conf/edustore/db/install/schluesseltabellen/release_unloads/k_astat_abschl_grp.unl new file mode 100644 index 0000000..464c5c0 --- /dev/null +++ b/superx/WEB-INF/conf/edustore/db/install/schluesseltabellen/release_unloads/k_astat_abschl_grp.unl @@ -0,0 +1,98 @@ +70^staatl.Prf^A9^G_Abschlus^ +71^Bühnen-/Ko^A23^G_Konzerte^ +72^Privatmusi^A9^G_Abschlus^ +01^MFB mLaU^A24^G_Bachelor^ +02^Magister^A3^G_Magister^ +03^Lizentiat^A7^G_Lizentia^ +04^kirchliche^A8^G_Kirchlic^ +05^akad.gepr.^A9^G_Abschlus^ +06^Promotion^PROM^G_Prom^ +07^Prom.ohne^PROM^G_Prom^ +08^Staatsexam^A5^G_Staatsex^ +09^Staatsexam^A5^G_Staatsex^ +10^Fakultätsp^A4^G_Fakultät^ +11^Diplom Uni^A1^G_Diplom^ +12^Diplom Uni^A1^G_Diplom^ +13^Diplom Uni^A1^G_Diplom^ +14^Diplom I U^A2^G_Diplom^ +17^AbschlPrfg^A9^G_Abschlus^ +18^Diplom Leh^A40^G_Diplom^ +19^LA Ba G/P^A24^G_Bachelor^ +20^LA Grund-u^A12^G_Lehramt^ +21^LA Grundsc^A10^G_Lehramt^ +22^LA Hauptsc^A13^G_Lehramt^ +23^LA Realsch^A15^G_Lehramt^ +24^LA Haupt-u^A14^G_Lehramt^ +25^LA Gymnasi^A17^G_Lehramt^ +26^LA Sonders^A25^G_Lehramt^ +27^LA Berufss^A19^G_Lehramt^ +28^LA Sekund.^A16^G_Lehramt^ +29^sonst.LA n^A40^G_Diplom^ +30^LA Master^A37^G_Master^ +31^LA Ba swkD^A24^G_Bachelor^ +32^LA Ba SI/P^A24^G_Bachelor^ +33^LA Ba G/SI^A24^G_Bachelor^ +34^LA Ba Real^A24^G_Bachelor^ +35^LA Ba UuMG^A24^G_Bachelor^ +36^LA Ba M/SI^A24^G_Bachelor^ +37^LA Ba S2/S^A24^G_Bachelor^ +38^LA Ba Gym^A24^G_Bachelor^ +39^LA Ba Oall^A24^G_Bachelor^ +40^LA Grundsc^A12^G_Lehramt^ +41^LA Sekunda^A18^G_Lehramt^ +42^LA Grundst^A11^G_Lehramt^ +43^LA Mittels^A16^G_Lehramt^ +44^LA Oberst.^A18^G_Lehramt^ +45^LA Oberst.^A18^G_Lehramt^ +46^LA Ba S/F^A24^G_Bachelor^ +47^LA Ba BS^A24^G_Bachelor^ +48^LA Ba Ober^A24^G_Bachelor^ +49^LA Ma Gru^A37^G_Master^ +50^LA Ma Hau^A37^G_Master^ +51^Diplom FH^A20^G_DiplomFH^ +52^LA Ma G/P^A37^G_Master^ +53^Diplom FH^A20^G_DiplomFH^ +54^Diplom FH^A20^G_DiplomFH^ +55^LA Ma SI/P^A37^G_Master^ +56^staatl.Lau^A9^G_Abschlus^ +57^LA Ma G/SI^A37^G_Master^ +58^LA Ma Real^A37^G_Master^ +59^sonst.FH A^A99^G_Sonstige^ +60^LA Ma UuMG^A37^G_Master^ +61^LA Ma M/SI^A37^G_Master^ +62^LA Ma S2/S^A37^G_Master^ +63^LA Ma Oall^A37^G_Master^ +64^LA Ma Gym^A37^G_Master^ +65^LA Ma S/F^A37^G_Master^ +66^LA Ma BS^A37^G_Master^ +67^LA Ma Ober^A37^G_Master^ +68^MFB oLaU^A24^G_Bachelor^ +69^MFM aU^A37^G_Master^ +73^Kirchenmus^A9^G_Abschlus^ +74^Kirchenmus^A99^G_Sonstige^ +75^Diplom Kun^A1^G_Diplom^ +76^Meister^A99^G_Sonstige^ +77^Kunstpädag^A9^G_Abschlus^ +78^Master(U)L^A37^G_Master^ +79^Solistenpr^A9^G_Abschlus^ +80^sonstiger^A9^G_Abschlus^ +81^Akademiebr^A9^G_Abschlus^ +82^Bachelor U^A24^G_Bachelor^ +83^Bachelor K^A24^G_Bachelor^ +84^Bachelor F^A24^G_Bachelor^ +88^Master Uni^A37^G_Master^ +89^Master Kun^A37^G_Master^ +90^Master FH^A37^G_Master^ +91^St Prom^PROM^G_Prom^ +92^PnFH-A^PROM^G_Prom^ +93^Ba Lehrer^A24^G_Bachelor^ +94^Abschlußze^A9^G_Abschlus^ +95^sonst.Absc^A9^G_Abschlus^ +96^Abschluß a^A9^G_Abschlus^ +97^keine Absc^A99^G_Sonstige^ +98^LA Ba G-uH^A24^G_Bachelor^ +99^LA Ma G-uH^A37^G_Master^ +15^LA Ba G^A24^G_Bachelor^ +16^LA Ba H^A24^G_Bachelor^ +87^^A99^G_Sonstige^ +86^^A99^G_Sonstige^ diff --git a/superx/WEB-INF/conf/edustore/db/install/upgrade/kern_env_upgrade.x b/superx/WEB-INF/conf/edustore/db/install/upgrade/kern_env_upgrade.x index b41e0a1..9868375 100755 --- a/superx/WEB-INF/conf/edustore/db/install/upgrade/kern_env_upgrade.x +++ b/superx/WEB-INF/conf/edustore/db/install/upgrade/kern_env_upgrade.x @@ -53,6 +53,9 @@ fi # # ######################### +if test -f $WEBAPP/WEB-INF/lib/superx5.1.jar ; then +java -cp $WEBAPP/WEB-INF/lib/superx5.1.jar de.superx.bin.Upgrade $WEBAPP/WEB-INF/conf/obsoletfiles.txt + if test -f $WEBAPP/WEB-INF/lib/superx5.0.jar ; then java -cp $WEBAPP/WEB-INF/lib/superx5.0.jar de.superx.bin.Upgrade $WEBAPP/WEB-INF/conf/obsoletfiles.txt else @@ -96,7 +99,7 @@ fi fi fi fi - +fi diff --git a/superx/WEB-INF/conf/edustore/db/install/upgrade/kern_pre_upgrade_pg.sql b/superx/WEB-INF/conf/edustore/db/install/upgrade/kern_pre_upgrade_pg.sql index 2b106f5..7dbf1b1 100644 --- a/superx/WEB-INF/conf/edustore/db/install/upgrade/kern_pre_upgrade_pg.sql +++ b/superx/WEB-INF/conf/edustore/db/install/upgrade/kern_pre_upgrade_pg.sql @@ -118,4 +118,12 @@ alter table sieve_column_def alter lookup_func type varchar(1000); alter table systeminfo alter datum type timestamp; alter table db_version alter his_system type varchar(255); +alter table felderinfo alter defaultwert type text; alter table db_version add unique(his_system); + +--sx_repository +update sx_repository set aktiv=0 where aktiv is null; + +<#if TableFieldExists?exists && TableFieldExists('sx_repository','aktiv')> +alter table sx_repository alter aktiv set not null; + diff --git a/superx/WEB-INF/conf/edustore/db/install/upgrade/kernmodul_upgrade_man.sql b/superx/WEB-INF/conf/edustore/db/install/upgrade/kernmodul_upgrade_man.sql index 9a3d5dd..8928eff 100644 --- a/superx/WEB-INF/conf/edustore/db/install/upgrade/kernmodul_upgrade_man.sql +++ b/superx/WEB-INF/conf/edustore/db/install/upgrade/kernmodul_upgrade_man.sql @@ -64,6 +64,7 @@ alter table stylesheet_field alter column fieldname type varchar(255); alter table update_prot alter column updated_at type timestamptz; alter table update_prot alter column update_time type timestamptz; alter table felderinfo alter name type varchar(255); +alter table felderinfo alter defaultwert type TEXT; --Passwortspalte ab Kern 5.0 größer für SHA512: alter table userinfo alter column passwd_sha type char(255); alter table user_pw alter column old_sha1 type char(255); diff --git a/superx/WEB-INF/conf/obsoletfiles.txt b/superx/WEB-INF/conf/obsoletfiles.txt index 28694f5..66f3ee4 100644 --- a/superx/WEB-INF/conf/obsoletfiles.txt +++ b/superx/WEB-INF/conf/obsoletfiles.txt @@ -23,6 +23,7 @@ WEB-INF/lib/superx4.6.jar WEB-INF/lib/superx4.7.jar WEB-INF/lib/superx4.8.jar WEB-INF/lib/superx4.9.jar +WEB-INF/lib/superx5.0.jar WEB-INF/lib/mondrian-3.5.7.jar WEB-INF/lib/batik.jar WEB-INF/lib/batik-all-1.7.jar diff --git a/superx/WEB-INF/lib/superx5.0.jar b/superx/WEB-INF/lib/superx5.1.jar similarity index 91% rename from superx/WEB-INF/lib/superx5.0.jar rename to superx/WEB-INF/lib/superx5.1.jar index 6eed4f3..e24648b 100644 Binary files a/superx/WEB-INF/lib/superx5.0.jar and b/superx/WEB-INF/lib/superx5.1.jar differ diff --git a/superx/WEB-INF/patch/patch_archive/patch_2024-06-10_bash_var.sh b/superx/WEB-INF/patch/patch_archive/patch_2024-06-10_bash_var.sh new file mode 100755 index 0000000..6129b1a --- /dev/null +++ b/superx/WEB-INF/patch/patch_archive/patch_2024-06-10_bash_var.sh @@ -0,0 +1,22 @@ + + +export ANLEITUNG="Modul: KERN +PATCH 2024-06-10 Erweiterung https://hiszilla.his.de/hiszilla/show_bug.cgi?id=252453 : Patch: Hochschulspezifische Validierung in Masken ermöglichen - und mehr. Vorab-Version nur für SuperX, in HISinOne-BI wird diese Funktion in 2024.06 vorhanden sein. +Weitere Hinweise siehe Laderegel +Dateien: + +Datei: +xml/maske_html.xslTemplate Platzhalter +Datei: +xml/maske_html_superx_old.xslTemplate Platzhalter +Datei: +xml/maskComponents_html.xslLesezeichen Vorlagen unter Chrome +Datei: +xml/pageComponents_html.xslTemplate Platzhalter +Datei: +xml/js/memtext/sx_functions.jsJavascript Code für die Maske "Maske kopieren" +Masken: +70350 - Maske kopieren +" +export MODULE_LIST="kern " + diff --git a/superx/WEB-INF/patch/patch_archive/patch_2024-06-10_readme.htm b/superx/WEB-INF/patch/patch_archive/patch_2024-06-10_readme.htm new file mode 100644 index 0000000..7f6cfb9 --- /dev/null +++ b/superx/WEB-INF/patch/patch_archive/patch_2024-06-10_readme.htm @@ -0,0 +1,99 @@ + + + + Patch + + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Patchnotes mit Administrationshilfe

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              made by MEMTEXT

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Modul: KERN

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              PATCH 2024-06-10

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Achtung: Der Patch ist nur für aktuelle Modulversionen geeignet!

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Erweiterung 252453: +

                                                                                                                                                                                                                                              + Patch: Hochschulspezifische Validierung in Masken ermöglichen - und mehr. Vorab-Version nur für SuperX, in HISinOne-BI wird + diese Funktion in 2024.06 vorhanden sein. + Weitere Hinweise siehe Laderegel +

                                                                                                                                                                                                                                              Dateien:

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              • Datei: xml/maske_html.xsl
                                                                                                                                                                                                                                                Template Platzhalter +
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Datei: xml/maske_html_superx_old.xsl
                                                                                                                                                                                                                                                Template Platzhalter +
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Datei: xml/maskComponents_html.xsl
                                                                                                                                                                                                                                                Lesezeichen Vorlagen unter Chrome +
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Datei: xml/pageComponents_html.xsl
                                                                                                                                                                                                                                                Template Platzhalter +
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              • Datei: xml/js/memtext/sx_functions.js
                                                                                                                                                                                                                                                Javascript Code für die Maske "Maske kopieren" +
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Masken:

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              • 70350 - Maske kopieren
                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Download

                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                              In der klassischen SuperX-Variante liegt das db und webserver Verzeichnis auf einer Ebene meistens unterhalb von /home/superx. + Bei der "webapps"-Variante liegt alles unterhalb von webapps/superx. Dies ist der Standard in HISinOne-BI.

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + diff --git a/superx/WEB-INF/patch/xml/patch_2024-06-10.xml b/superx/WEB-INF/patch/xml/patch_2024-06-10.xml new file mode 100644 index 0000000..17a7bc0 --- /dev/null +++ b/superx/WEB-INF/patch/xml/patch_2024-06-10.xml @@ -0,0 +1,59 @@ + + + + + + + + + + +Patch: Hochschulspezifische Validierung in Masken ermöglichen - und mehr. Vorab-Version nur für SuperX, in HISinOne-BI wird diese Funktion in 2024.06 vorhanden sein. +Weitere Hinweise siehe Laderegel + + + + + + + + + +Template Platzhalter +Template Platzhalter +Lesezeichen Vorlagen unter Chrome +Template Platzhalter +Javascript Code für die Maske "Maske kopieren" + + + + + + + + + + $SUPERX_DIR/db/install/masken + + + + + + + + + + + + + + + + + + + + + + + diff --git a/superx/edit/kern/systeminfo_view.jsp b/superx/edit/kern/systeminfo_view.jsp new file mode 100644 index 0000000..92a7b65 --- /dev/null +++ b/superx/edit/kern/systeminfo_view.jsp @@ -0,0 +1,119 @@ +<%@ taglib uri="/WEB-INF/dbforms.tld" prefix="db" %> +<%@page pageEncoding="utf-8" contentType="text/html; charset=UTF-8" %> + + + + + + + + + + +Formular Systeminfo abrufen + + + +<%@ page import ="java.util.Hashtable" %> +<% +//HttpSession session=request.getSession(true); +if (request.getCharacterEncoding() == null) + request.setCharacterEncoding("UTF-8"); +Object userobject=request.getSession().getAttribute("UserID"); +String userid; +String filter=""; +String sql=""; +if(userobject == null) +{ +%> + + +<% +} +else + userid=userobject.toString(); +Object mandantobject=request.getSession().getAttribute("MandantenID"); +String mandantenid=""; +if(mandantobject != null) + mandantenid=mandantobject.toString(); +//der superx-Default-Mandant ist bei dbforms ein Leerstring +if(mandantenid.equals("default")) + mandantenid=""; +String db_form_name="systeminfo"; +String erlaubt="0"; +%> +<%@ include file="/edit/check_authentication.inc" %> +<% +if(erlaubt.equals("0")) +{ +%> + + +<% +} + +String keyfieldsused="false"; +Object kf=request.getParameter("keyfieldsused"); +if(kf != null) +keyfieldsused=kf.toString(); + +%> + + + +

                                                                                                                                                                                                                                              +Logo +
                                                                                                                                                                                                                                              <% if(!mandantenid.equals("default") && !mandantenid.equals("")) +out.println("Mandant: " + mandantenid +""); +%>

                                                                                                                                                                                                                                              +<% +String tid = request.getParameter("tid"); +Hashtable gotoMyHash = null; +if(tid !=null) { +gotoMyHash= new Hashtable(); +gotoMyHash.put("tid",tid); +} +%> + +<% +String name = request.getParameter("name"); +if(name != null && !name.equals("null")){ + filter +="name~'"+name+"'"; +} +%> + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + diff --git a/superx/edit/kern/webapp_manager.jsp b/superx/edit/kern/webapp_manager.jsp index 914edf4..0b642e7 100644 --- a/superx/edit/kern/webapp_manager.jsp +++ b/superx/edit/kern/webapp_manager.jsp @@ -63,10 +63,6 @@ function getLogs(logtype,caption,loglines) document.getElementById("MaskHeader").innerHTML=(logtype.startsWith("server")?"Server-Logdateien":"Maskenprotokolle"); document.getElementById("MaskSubHeader").innerHTML=caption; -if(document.forms['log'] && document.forms['log'].elements['logtype']) -{ -document.forms['log'].elements['logtype'].value=logtype; -} var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { @@ -177,7 +173,11 @@ if(tab == null) Webanwendung Manager - + - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -<% + <% } //Ende Tiles Startseite %> <% @@ -369,6 +367,9 @@ if(tab.equals("mask")) if(tab.equals("db")) { %> +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              @@ -399,6 +400,7 @@ if(tab.equals("db"))

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              <% } //Ende db Content @@ -418,10 +420,10 @@ if(tab.equals("log"))
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              (max. letzte 100 Zeilen) +
                                                                                                                                                                                                                                              (max. letzte Zeilen) diff --git a/superx/images/table.svg b/superx/images/table.svg index e8aa3de..dae1355 100644 --- a/superx/images/table.svg +++ b/superx/images/table.svg @@ -1,55 +1,27 @@ - - - - - - image/svg+xml - - - - - - - - + + + + + + + + + + + + + + + diff --git a/superx/style/LICENSE_bulma_tooltip_1.2.0.txt b/superx/style/LICENSE_bulma_tooltip_1.2.0.txt new file mode 100644 index 0000000..b14b7de --- /dev/null +++ b/superx/style/LICENSE_bulma_tooltip_1.2.0.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 CreativeBulma + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/superx/style/bulma-tooltip.min.css b/superx/style/bulma-tooltip.min.css new file mode 100644 index 0000000..9b9e7b0 --- /dev/null +++ b/superx/style/bulma-tooltip.min.css @@ -0,0 +1,2 @@ +/*! @creativebulma/bulma-tooltip v1.2.0 | (c) 2020 Gaetan | MIT License | https://github.com/CreativeBulma/bulma-tooltip */ +[data-tooltip]:not(.is-disabled),[data-tooltip]:not(.is-loading),[data-tooltip]:not([disabled]){cursor:pointer;overflow:visible;position:relative}[data-tooltip]:not(.is-disabled):before,[data-tooltip]:not(.is-loading):before,[data-tooltip]:not([disabled]):before{background:rgba(74,74,74,.9);border-radius:2px;content:attr(data-tooltip);padding:.5rem 1rem;text-overflow:ellipsis;white-space:pre;right:auto;bottom:auto;left:50%;top:0;margin-top:-5px;margin-bottom:auto;transform:translate(-50%,-100%)}[data-tooltip]:not(.is-disabled).has-tooltip-arrow:after,[data-tooltip]:not(.is-disabled):before,[data-tooltip]:not(.is-loading).has-tooltip-arrow:after,[data-tooltip]:not(.is-loading):before,[data-tooltip]:not([disabled]).has-tooltip-arrow:after,[data-tooltip]:not([disabled]):before{box-sizing:border-box;color:#fff;display:inline-block;font-family:BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:.75rem;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;opacity:0;overflow:hidden;pointer-events:none;position:absolute;visibility:hidden;z-index:1}[data-tooltip]:not(.is-disabled).has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-arrow:after{content:"";border-style:solid;border-width:6px;border-color:rgba(74,74,74,.9) transparent transparent;margin-bottom:-5px}[data-tooltip]:not(.is-disabled).has-tooltip-arrow.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-arrow.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-arrow.has-tooltip-arrow:after{top:0;right:auto;bottom:auto;left:50%;margin:-5px auto auto -5px;border-color:rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-bottom.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-bottom.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-bottom.has-tooltip-arrow:after{top:auto;right:auto;bottom:-1px;left:50%;margin:auto auto -5px -5px;border-color:transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-bottom:before,[data-tooltip]:not(.is-loading).has-tooltip-bottom:before,[data-tooltip]:not([disabled]).has-tooltip-bottom:before{top:auto;right:auto;bottom:0;left:50%;margin-top:auto;margin-bottom:-5px;transform:translate(-50%,100%)}[data-tooltip]:not(.is-disabled).has-tooltip-left.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-left.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-left.has-tooltip-arrow:after{top:auto;right:auto;bottom:50%;left:0;margin:auto auto -6px -5px;border-color:transparent transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-left:before,[data-tooltip]:not(.is-loading).has-tooltip-left:before,[data-tooltip]:not([disabled]).has-tooltip-left:before{top:auto;right:auto;bottom:50%;left:-5px;transform:translate(-100%,50%)}[data-tooltip]:not(.is-disabled).has-tooltip-right.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-right.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-right.has-tooltip-arrow:after{top:auto;right:0;bottom:50%;left:auto;margin:auto -6px -6px auto;border-color:transparent rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-right:before,[data-tooltip]:not(.is-loading).has-tooltip-right:before,[data-tooltip]:not([disabled]).has-tooltip-right:before{top:auto;right:-5px;bottom:50%;left:auto;margin-top:auto;transform:translate(100%,50%)}[data-tooltip]:not(.is-disabled).has-tooltip-multiline:before,[data-tooltip]:not(.is-loading).has-tooltip-multiline:before,[data-tooltip]:not([disabled]).has-tooltip-multiline:before{height:auto;width:15rem;max-width:15rem;text-overflow:clip;white-space:normal;word-break:keep-all}[data-tooltip]:not(.is-disabled).has-tooltip-text-left:before,[data-tooltip]:not(.is-loading).has-tooltip-text-left:before,[data-tooltip]:not([disabled]).has-tooltip-text-left:before{text-align:left}[data-tooltip]:not(.is-disabled).has-tooltip-text-centered:before,[data-tooltip]:not(.is-loading).has-tooltip-text-centered:before,[data-tooltip]:not([disabled]).has-tooltip-text-centered:before{text-align:center}[data-tooltip]:not(.is-disabled).has-tooltip-text-right:before,[data-tooltip]:not(.is-loading).has-tooltip-text-right:before,[data-tooltip]:not([disabled]).has-tooltip-text-right:before{text-align:right}[data-tooltip]:not(.is-disabled).has-tooltip-white:after,[data-tooltip]:not(.is-loading).has-tooltip-white:after,[data-tooltip]:not([disabled]).has-tooltip-white:after{border-color:hsla(0,0%,100%,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-white.has-tooltip-bottom:after,[data-tooltip]:not(.is-loading).has-tooltip-white.has-tooltip-bottom:after,[data-tooltip]:not([disabled]).has-tooltip-white.has-tooltip-bottom:after{border-color:transparent transparent hsla(0,0%,100%,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-white.has-tooltip-left:after,[data-tooltip]:not(.is-loading).has-tooltip-white.has-tooltip-left:after,[data-tooltip]:not([disabled]).has-tooltip-white.has-tooltip-left:after{border-color:transparent transparent transparent hsla(0,0%,100%,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-white.has-tooltip-right:after,[data-tooltip]:not(.is-loading).has-tooltip-white.has-tooltip-right:after,[data-tooltip]:not([disabled]).has-tooltip-white.has-tooltip-right:after{border-color:transparent hsla(0,0%,100%,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-white:before,[data-tooltip]:not(.is-loading).has-tooltip-white:before,[data-tooltip]:not([disabled]).has-tooltip-white:before{background-color:hsla(0,0%,100%,.9);color:#0a0a0a}[data-tooltip]:not(.is-disabled).has-tooltip-black:after,[data-tooltip]:not(.is-loading).has-tooltip-black:after,[data-tooltip]:not([disabled]).has-tooltip-black:after{border-color:hsla(0,0%,4%,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-black.has-tooltip-bottom:after,[data-tooltip]:not(.is-loading).has-tooltip-black.has-tooltip-bottom:after,[data-tooltip]:not([disabled]).has-tooltip-black.has-tooltip-bottom:after{border-color:transparent transparent hsla(0,0%,4%,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-black.has-tooltip-left:after,[data-tooltip]:not(.is-loading).has-tooltip-black.has-tooltip-left:after,[data-tooltip]:not([disabled]).has-tooltip-black.has-tooltip-left:after{border-color:transparent transparent transparent hsla(0,0%,4%,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-black.has-tooltip-right:after,[data-tooltip]:not(.is-loading).has-tooltip-black.has-tooltip-right:after,[data-tooltip]:not([disabled]).has-tooltip-black.has-tooltip-right:after{border-color:transparent hsla(0,0%,4%,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-black:before,[data-tooltip]:not(.is-loading).has-tooltip-black:before,[data-tooltip]:not([disabled]).has-tooltip-black:before{background-color:hsla(0,0%,4%,.9);color:#fff}[data-tooltip]:not(.is-disabled).has-tooltip-light:after,[data-tooltip]:not(.is-loading).has-tooltip-light:after,[data-tooltip]:not([disabled]).has-tooltip-light:after{border-color:hsla(0,0%,96%,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-light.has-tooltip-bottom:after,[data-tooltip]:not(.is-loading).has-tooltip-light.has-tooltip-bottom:after,[data-tooltip]:not([disabled]).has-tooltip-light.has-tooltip-bottom:after{border-color:transparent transparent hsla(0,0%,96%,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-light.has-tooltip-left:after,[data-tooltip]:not(.is-loading).has-tooltip-light.has-tooltip-left:after,[data-tooltip]:not([disabled]).has-tooltip-light.has-tooltip-left:after{border-color:transparent transparent transparent hsla(0,0%,96%,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-light.has-tooltip-right:after,[data-tooltip]:not(.is-loading).has-tooltip-light.has-tooltip-right:after,[data-tooltip]:not([disabled]).has-tooltip-light.has-tooltip-right:after{border-color:transparent hsla(0,0%,96%,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-light:before,[data-tooltip]:not(.is-loading).has-tooltip-light:before,[data-tooltip]:not([disabled]).has-tooltip-light:before{background-color:hsla(0,0%,96%,.9);color:rgba(0,0,0,.7)}[data-tooltip]:not(.is-disabled).has-tooltip-dark:after,[data-tooltip]:not(.is-loading).has-tooltip-dark:after,[data-tooltip]:not([disabled]).has-tooltip-dark:after{border-color:rgba(54,54,54,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-dark.has-tooltip-bottom:after,[data-tooltip]:not(.is-loading).has-tooltip-dark.has-tooltip-bottom:after,[data-tooltip]:not([disabled]).has-tooltip-dark.has-tooltip-bottom:after{border-color:transparent transparent rgba(54,54,54,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-dark.has-tooltip-left:after,[data-tooltip]:not(.is-loading).has-tooltip-dark.has-tooltip-left:after,[data-tooltip]:not([disabled]).has-tooltip-dark.has-tooltip-left:after{border-color:transparent transparent transparent rgba(54,54,54,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-dark.has-tooltip-right:after,[data-tooltip]:not(.is-loading).has-tooltip-dark.has-tooltip-right:after,[data-tooltip]:not([disabled]).has-tooltip-dark.has-tooltip-right:after{border-color:transparent rgba(54,54,54,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-dark:before,[data-tooltip]:not(.is-loading).has-tooltip-dark:before,[data-tooltip]:not([disabled]).has-tooltip-dark:before{background-color:rgba(54,54,54,.9);color:#fff}[data-tooltip]:not(.is-disabled).has-tooltip-primary:after,[data-tooltip]:not(.is-loading).has-tooltip-primary:after,[data-tooltip]:not([disabled]).has-tooltip-primary:after{border-color:rgba(0,209,178,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-primary.has-tooltip-bottom:after,[data-tooltip]:not(.is-loading).has-tooltip-primary.has-tooltip-bottom:after,[data-tooltip]:not([disabled]).has-tooltip-primary.has-tooltip-bottom:after{border-color:transparent transparent rgba(0,209,178,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-primary.has-tooltip-left:after,[data-tooltip]:not(.is-loading).has-tooltip-primary.has-tooltip-left:after,[data-tooltip]:not([disabled]).has-tooltip-primary.has-tooltip-left:after{border-color:transparent transparent transparent rgba(0,209,178,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-primary.has-tooltip-right:after,[data-tooltip]:not(.is-loading).has-tooltip-primary.has-tooltip-right:after,[data-tooltip]:not([disabled]).has-tooltip-primary.has-tooltip-right:after{border-color:transparent rgba(0,209,178,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-primary:before,[data-tooltip]:not(.is-loading).has-tooltip-primary:before,[data-tooltip]:not([disabled]).has-tooltip-primary:before{background-color:rgba(0,209,178,.9);color:#fff}[data-tooltip]:not(.is-disabled).has-tooltip-link:after,[data-tooltip]:not(.is-loading).has-tooltip-link:after,[data-tooltip]:not([disabled]).has-tooltip-link:after{border-color:rgba(50,115,220,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-link.has-tooltip-bottom:after,[data-tooltip]:not(.is-loading).has-tooltip-link.has-tooltip-bottom:after,[data-tooltip]:not([disabled]).has-tooltip-link.has-tooltip-bottom:after{border-color:transparent transparent rgba(50,115,220,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-link.has-tooltip-left:after,[data-tooltip]:not(.is-loading).has-tooltip-link.has-tooltip-left:after,[data-tooltip]:not([disabled]).has-tooltip-link.has-tooltip-left:after{border-color:transparent transparent transparent rgba(50,115,220,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-link.has-tooltip-right:after,[data-tooltip]:not(.is-loading).has-tooltip-link.has-tooltip-right:after,[data-tooltip]:not([disabled]).has-tooltip-link.has-tooltip-right:after{border-color:transparent rgba(50,115,220,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-link:before,[data-tooltip]:not(.is-loading).has-tooltip-link:before,[data-tooltip]:not([disabled]).has-tooltip-link:before{background-color:rgba(50,115,220,.9);color:#fff}[data-tooltip]:not(.is-disabled).has-tooltip-info:after,[data-tooltip]:not(.is-loading).has-tooltip-info:after,[data-tooltip]:not([disabled]).has-tooltip-info:after{border-color:rgba(50,152,220,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-info.has-tooltip-bottom:after,[data-tooltip]:not(.is-loading).has-tooltip-info.has-tooltip-bottom:after,[data-tooltip]:not([disabled]).has-tooltip-info.has-tooltip-bottom:after{border-color:transparent transparent rgba(50,152,220,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-info.has-tooltip-left:after,[data-tooltip]:not(.is-loading).has-tooltip-info.has-tooltip-left:after,[data-tooltip]:not([disabled]).has-tooltip-info.has-tooltip-left:after{border-color:transparent transparent transparent rgba(50,152,220,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-info.has-tooltip-right:after,[data-tooltip]:not(.is-loading).has-tooltip-info.has-tooltip-right:after,[data-tooltip]:not([disabled]).has-tooltip-info.has-tooltip-right:after{border-color:transparent rgba(50,152,220,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-info:before,[data-tooltip]:not(.is-loading).has-tooltip-info:before,[data-tooltip]:not([disabled]).has-tooltip-info:before{background-color:rgba(50,152,220,.9);color:#fff}[data-tooltip]:not(.is-disabled).has-tooltip-success:after,[data-tooltip]:not(.is-loading).has-tooltip-success:after,[data-tooltip]:not([disabled]).has-tooltip-success:after{border-color:rgba(72,199,116,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-success.has-tooltip-bottom:after,[data-tooltip]:not(.is-loading).has-tooltip-success.has-tooltip-bottom:after,[data-tooltip]:not([disabled]).has-tooltip-success.has-tooltip-bottom:after{border-color:transparent transparent rgba(72,199,116,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-success.has-tooltip-left:after,[data-tooltip]:not(.is-loading).has-tooltip-success.has-tooltip-left:after,[data-tooltip]:not([disabled]).has-tooltip-success.has-tooltip-left:after{border-color:transparent transparent transparent rgba(72,199,116,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-success.has-tooltip-right:after,[data-tooltip]:not(.is-loading).has-tooltip-success.has-tooltip-right:after,[data-tooltip]:not([disabled]).has-tooltip-success.has-tooltip-right:after{border-color:transparent rgba(72,199,116,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-success:before,[data-tooltip]:not(.is-loading).has-tooltip-success:before,[data-tooltip]:not([disabled]).has-tooltip-success:before{background-color:rgba(72,199,116,.9);color:#fff}[data-tooltip]:not(.is-disabled).has-tooltip-warning:after,[data-tooltip]:not(.is-loading).has-tooltip-warning:after,[data-tooltip]:not([disabled]).has-tooltip-warning:after{border-color:rgba(255,221,87,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-warning.has-tooltip-bottom:after,[data-tooltip]:not(.is-loading).has-tooltip-warning.has-tooltip-bottom:after,[data-tooltip]:not([disabled]).has-tooltip-warning.has-tooltip-bottom:after{border-color:transparent transparent rgba(255,221,87,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-warning.has-tooltip-left:after,[data-tooltip]:not(.is-loading).has-tooltip-warning.has-tooltip-left:after,[data-tooltip]:not([disabled]).has-tooltip-warning.has-tooltip-left:after{border-color:transparent transparent transparent rgba(255,221,87,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-warning.has-tooltip-right:after,[data-tooltip]:not(.is-loading).has-tooltip-warning.has-tooltip-right:after,[data-tooltip]:not([disabled]).has-tooltip-warning.has-tooltip-right:after{border-color:transparent rgba(255,221,87,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-warning:before,[data-tooltip]:not(.is-loading).has-tooltip-warning:before,[data-tooltip]:not([disabled]).has-tooltip-warning:before{background-color:rgba(255,221,87,.9);color:rgba(0,0,0,.7)}[data-tooltip]:not(.is-disabled).has-tooltip-danger:after,[data-tooltip]:not(.is-loading).has-tooltip-danger:after,[data-tooltip]:not([disabled]).has-tooltip-danger:after{border-color:rgba(241,70,104,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-danger.has-tooltip-bottom:after,[data-tooltip]:not(.is-loading).has-tooltip-danger.has-tooltip-bottom:after,[data-tooltip]:not([disabled]).has-tooltip-danger.has-tooltip-bottom:after{border-color:transparent transparent rgba(241,70,104,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-danger.has-tooltip-left:after,[data-tooltip]:not(.is-loading).has-tooltip-danger.has-tooltip-left:after,[data-tooltip]:not([disabled]).has-tooltip-danger.has-tooltip-left:after{border-color:transparent transparent transparent rgba(241,70,104,.9)!important}[data-tooltip]:not(.is-disabled).has-tooltip-danger.has-tooltip-right:after,[data-tooltip]:not(.is-loading).has-tooltip-danger.has-tooltip-right:after,[data-tooltip]:not([disabled]).has-tooltip-danger.has-tooltip-right:after{border-color:transparent rgba(241,70,104,.9) transparent transparent!important}[data-tooltip]:not(.is-disabled).has-tooltip-danger:before,[data-tooltip]:not(.is-loading).has-tooltip-danger:before,[data-tooltip]:not([disabled]).has-tooltip-danger:before{background-color:rgba(241,70,104,.9);color:#fff}[data-tooltip]:not(.is-disabled).has-tooltip-active:after,[data-tooltip]:not(.is-disabled).has-tooltip-active:before,[data-tooltip]:not(.is-disabled):hover:after,[data-tooltip]:not(.is-disabled):hover:before,[data-tooltip]:not(.is-loading).has-tooltip-active:after,[data-tooltip]:not(.is-loading).has-tooltip-active:before,[data-tooltip]:not(.is-loading):hover:after,[data-tooltip]:not(.is-loading):hover:before,[data-tooltip]:not([disabled]).has-tooltip-active:after,[data-tooltip]:not([disabled]).has-tooltip-active:before,[data-tooltip]:not([disabled]):hover:after,[data-tooltip]:not([disabled]):hover:before{opacity:1;visibility:visible}[data-tooltip]:not(.is-disabled).has-tooltip-fade:after,[data-tooltip]:not(.is-disabled).has-tooltip-fade:before,[data-tooltip]:not(.is-loading).has-tooltip-fade:after,[data-tooltip]:not(.is-loading).has-tooltip-fade:before,[data-tooltip]:not([disabled]).has-tooltip-fade:after,[data-tooltip]:not([disabled]).has-tooltip-fade:before{transition:opacity .3s linear,visibility .3s linear}@media screen and (max-width:768px){[data-tooltip]:not(.is-disabled).has-tooltip-top-mobile.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-top-mobile.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-top-mobile.has-tooltip-arrow:after{top:0;right:auto;bottom:auto;left:50%;margin:-5px auto auto -5px;border-color:rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-top-mobile:before,[data-tooltip]:not(.is-loading).has-tooltip-top-mobile:before,[data-tooltip]:not([disabled]).has-tooltip-top-mobile:before{right:auto;bottom:auto;left:50%;top:0;margin-top:-5px;margin-bottom:auto;transform:translate(-50%,-100%)}}@media print,screen and (min-width:769px){[data-tooltip]:not(.is-disabled).has-tooltip-top-tablet.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-top-tablet.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-top-tablet.has-tooltip-arrow:after{top:0;right:auto;bottom:auto;left:50%;margin:-5px auto auto -5px;border-color:rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-top-tablet:before,[data-tooltip]:not(.is-loading).has-tooltip-top-tablet:before,[data-tooltip]:not([disabled]).has-tooltip-top-tablet:before{right:auto;bottom:auto;left:50%;top:0;margin-top:-5px;margin-bottom:auto;transform:translate(-50%,-100%)}}@media screen and (min-width:769px) and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-top-tablet-only.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-top-tablet-only.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-top-tablet-only.has-tooltip-arrow:after{top:0;right:auto;bottom:auto;left:50%;margin:-5px auto auto -5px;border-color:rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-top-tablet-only:before,[data-tooltip]:not(.is-loading).has-tooltip-top-tablet-only:before,[data-tooltip]:not([disabled]).has-tooltip-top-tablet-only:before{right:auto;bottom:auto;left:50%;top:0;margin-top:-5px;margin-bottom:auto;transform:translate(-50%,-100%)}}@media screen and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-top-touch.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-top-touch.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-top-touch.has-tooltip-arrow:after{top:0;right:auto;bottom:auto;left:50%;margin:-5px auto auto -5px;border-color:rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-top-touch:before,[data-tooltip]:not(.is-loading).has-tooltip-top-touch:before,[data-tooltip]:not([disabled]).has-tooltip-top-touch:before{right:auto;bottom:auto;left:50%;top:0;margin-top:-5px;margin-bottom:auto;transform:translate(-50%,-100%)}}@media screen and (min-width:1024px){[data-tooltip]:not(.is-disabled).has-tooltip-top-desktop.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-top-desktop.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-top-desktop.has-tooltip-arrow:after{top:0;right:auto;bottom:auto;left:50%;margin:-5px auto auto -5px;border-color:rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-top-desktop:before,[data-tooltip]:not(.is-loading).has-tooltip-top-desktop:before,[data-tooltip]:not([disabled]).has-tooltip-top-desktop:before{right:auto;bottom:auto;left:50%;top:0;margin-top:-5px;margin-bottom:auto;transform:translate(-50%,-100%)}}@media screen and (min-width:1024px) and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-top-desktop-only.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-top-desktop-only.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-top-desktop-only.has-tooltip-arrow:after{top:0;right:auto;bottom:auto;left:50%;margin:-5px auto auto -5px;border-color:rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-top-desktop-only:before,[data-tooltip]:not(.is-loading).has-tooltip-top-desktop-only:before,[data-tooltip]:not([disabled]).has-tooltip-top-desktop-only:before{right:auto;bottom:auto;left:50%;top:0;margin-top:-5px;margin-bottom:auto;transform:translate(-50%,-100%)}}@media screen and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-top-until-widescreen.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-top-until-widescreen.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-top-until-widescreen.has-tooltip-arrow:after{top:0;right:auto;bottom:auto;left:50%;margin:-5px auto auto -5px;border-color:rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-top-until-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-top-until-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-top-until-widescreen:before{right:auto;bottom:auto;left:50%;top:0;margin-top:-5px;margin-bottom:auto;transform:translate(-50%,-100%)}}@media screen and (min-width:1216px){[data-tooltip]:not(.is-disabled).has-tooltip-top-widescreen.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-top-widescreen.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-top-widescreen.has-tooltip-arrow:after{top:0;right:auto;bottom:auto;left:50%;margin:-5px auto auto -5px;border-color:rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-top-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-top-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-top-widescreen:before{right:auto;bottom:auto;left:50%;top:0;margin-top:-5px;margin-bottom:auto;transform:translate(-50%,-100%)}}@media screen and (min-width:1216px) and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-top-widescreen-only.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-top-widescreen-only.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-top-widescreen-only.has-tooltip-arrow:after{top:0;right:auto;bottom:auto;left:50%;margin:-5px auto auto -5px;border-color:rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-top-widescreen-only:before,[data-tooltip]:not(.is-loading).has-tooltip-top-widescreen-only:before,[data-tooltip]:not([disabled]).has-tooltip-top-widescreen-only:before{right:auto;bottom:auto;left:50%;top:0;margin-top:-5px;margin-bottom:auto;transform:translate(-50%,-100%)}}@media screen and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-top-until-fullhd.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-top-until-fullhd.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-top-until-fullhd.has-tooltip-arrow:after{top:0;right:auto;bottom:auto;left:50%;margin:-5px auto auto -5px;border-color:rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-top-until-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-top-until-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-top-until-fullhd:before{right:auto;bottom:auto;left:50%;top:0;margin-top:-5px;margin-bottom:auto;transform:translate(-50%,-100%)}}@media screen and (min-width:1408px){[data-tooltip]:not(.is-disabled).has-tooltip-top-fullhd.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-top-fullhd.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-top-fullhd.has-tooltip-arrow:after{top:0;right:auto;bottom:auto;left:50%;margin:-5px auto auto -5px;border-color:rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-top-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-top-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-top-fullhd:before{right:auto;bottom:auto;left:50%;top:0;margin-top:-5px;margin-bottom:auto;transform:translate(-50%,-100%)}}@media screen and (max-width:768px){[data-tooltip]:not(.is-disabled).has-tooltip-right-mobile.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-right-mobile.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-right-mobile.has-tooltip-arrow:after{top:auto;right:0;bottom:50%;left:auto;margin:auto -6px -6px auto;border-color:transparent rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-right-mobile:before,[data-tooltip]:not(.is-loading).has-tooltip-right-mobile:before,[data-tooltip]:not([disabled]).has-tooltip-right-mobile:before{top:auto;right:-5px;bottom:50%;left:auto;margin-top:auto;transform:translate(100%,50%)}}@media print,screen and (min-width:769px){[data-tooltip]:not(.is-disabled).has-tooltip-right-tablet.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-right-tablet.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-right-tablet.has-tooltip-arrow:after{top:auto;right:0;bottom:50%;left:auto;margin:auto -6px -6px auto;border-color:transparent rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-right-tablet:before,[data-tooltip]:not(.is-loading).has-tooltip-right-tablet:before,[data-tooltip]:not([disabled]).has-tooltip-right-tablet:before{top:auto;right:-5px;bottom:50%;left:auto;margin-top:auto;transform:translate(100%,50%)}}@media screen and (min-width:769px) and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-right-tablet-only.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-right-tablet-only.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-right-tablet-only.has-tooltip-arrow:after{top:auto;right:0;bottom:50%;left:auto;margin:auto -6px -6px auto;border-color:transparent rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-right-tablet-only:before,[data-tooltip]:not(.is-loading).has-tooltip-right-tablet-only:before,[data-tooltip]:not([disabled]).has-tooltip-right-tablet-only:before{top:auto;right:-5px;bottom:50%;left:auto;margin-top:auto;transform:translate(100%,50%)}}@media screen and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-right-touch.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-right-touch.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-right-touch.has-tooltip-arrow:after{top:auto;right:0;bottom:50%;left:auto;margin:auto -6px -6px auto;border-color:transparent rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-right-touch:before,[data-tooltip]:not(.is-loading).has-tooltip-right-touch:before,[data-tooltip]:not([disabled]).has-tooltip-right-touch:before{top:auto;right:-5px;bottom:50%;left:auto;margin-top:auto;transform:translate(100%,50%)}}@media screen and (min-width:1024px){[data-tooltip]:not(.is-disabled).has-tooltip-right-desktop.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-right-desktop.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-right-desktop.has-tooltip-arrow:after{top:auto;right:0;bottom:50%;left:auto;margin:auto -6px -6px auto;border-color:transparent rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-right-desktop:before,[data-tooltip]:not(.is-loading).has-tooltip-right-desktop:before,[data-tooltip]:not([disabled]).has-tooltip-right-desktop:before{top:auto;right:-5px;bottom:50%;left:auto;margin-top:auto;transform:translate(100%,50%)}}@media screen and (min-width:1024px) and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-right-desktop-only.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-right-desktop-only.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-right-desktop-only.has-tooltip-arrow:after{top:auto;right:0;bottom:50%;left:auto;margin:auto -6px -6px auto;border-color:transparent rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-right-desktop-only:before,[data-tooltip]:not(.is-loading).has-tooltip-right-desktop-only:before,[data-tooltip]:not([disabled]).has-tooltip-right-desktop-only:before{top:auto;right:-5px;bottom:50%;left:auto;margin-top:auto;transform:translate(100%,50%)}}@media screen and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-right-until-widescreen.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-right-until-widescreen.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-right-until-widescreen.has-tooltip-arrow:after{top:auto;right:0;bottom:50%;left:auto;margin:auto -6px -6px auto;border-color:transparent rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-right-until-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-right-until-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-right-until-widescreen:before{top:auto;right:-5px;bottom:50%;left:auto;margin-top:auto;transform:translate(100%,50%)}}@media screen and (min-width:1216px){[data-tooltip]:not(.is-disabled).has-tooltip-right-widescreen.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-right-widescreen.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-right-widescreen.has-tooltip-arrow:after{top:auto;right:0;bottom:50%;left:auto;margin:auto -6px -6px auto;border-color:transparent rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-right-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-right-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-right-widescreen:before{top:auto;right:-5px;bottom:50%;left:auto;margin-top:auto;transform:translate(100%,50%)}}@media screen and (min-width:1216px) and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-right-widescreen-only.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-right-widescreen-only.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-right-widescreen-only.has-tooltip-arrow:after{top:auto;right:0;bottom:50%;left:auto;margin:auto -6px -6px auto;border-color:transparent rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-right-widescreen-only:before,[data-tooltip]:not(.is-loading).has-tooltip-right-widescreen-only:before,[data-tooltip]:not([disabled]).has-tooltip-right-widescreen-only:before{top:auto;right:-5px;bottom:50%;left:auto;margin-top:auto;transform:translate(100%,50%)}}@media screen and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-right-until-fullhd.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-right-until-fullhd.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-right-until-fullhd.has-tooltip-arrow:after{top:auto;right:0;bottom:50%;left:auto;margin:auto -6px -6px auto;border-color:transparent rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-right-until-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-right-until-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-right-until-fullhd:before{top:auto;right:-5px;bottom:50%;left:auto;margin-top:auto;transform:translate(100%,50%)}}@media screen and (min-width:1408px){[data-tooltip]:not(.is-disabled).has-tooltip-right-fullhd.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-right-fullhd.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-right-fullhd.has-tooltip-arrow:after{top:auto;right:0;bottom:50%;left:auto;margin:auto -6px -6px auto;border-color:transparent rgba(74,74,74,.9) transparent transparent}[data-tooltip]:not(.is-disabled).has-tooltip-right-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-right-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-right-fullhd:before{top:auto;right:-5px;bottom:50%;left:auto;margin-top:auto;transform:translate(100%,50%)}}@media screen and (max-width:768px){[data-tooltip]:not(.is-disabled).has-tooltip-bottom-mobile.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-bottom-mobile.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-bottom-mobile.has-tooltip-arrow:after{top:auto;right:auto;bottom:-1px;left:50%;margin:auto auto -5px -5px;border-color:transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-bottom-mobile:before,[data-tooltip]:not(.is-loading).has-tooltip-bottom-mobile:before,[data-tooltip]:not([disabled]).has-tooltip-bottom-mobile:before{top:auto;right:auto;bottom:0;left:50%;margin-top:auto;margin-bottom:-5px;transform:translate(-50%,100%)}}@media print,screen and (min-width:769px){[data-tooltip]:not(.is-disabled).has-tooltip-bottom-tablet.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-bottom-tablet.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-bottom-tablet.has-tooltip-arrow:after{top:auto;right:auto;bottom:-1px;left:50%;margin:auto auto -5px -5px;border-color:transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-bottom-tablet:before,[data-tooltip]:not(.is-loading).has-tooltip-bottom-tablet:before,[data-tooltip]:not([disabled]).has-tooltip-bottom-tablet:before{top:auto;right:auto;bottom:0;left:50%;margin-top:auto;margin-bottom:-5px;transform:translate(-50%,100%)}}@media screen and (min-width:769px) and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-bottom-tablet-only.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-bottom-tablet-only.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-bottom-tablet-only.has-tooltip-arrow:after{top:auto;right:auto;bottom:-1px;left:50%;margin:auto auto -5px -5px;border-color:transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-bottom-tablet-only:before,[data-tooltip]:not(.is-loading).has-tooltip-bottom-tablet-only:before,[data-tooltip]:not([disabled]).has-tooltip-bottom-tablet-only:before{top:auto;right:auto;bottom:0;left:50%;margin-top:auto;margin-bottom:-5px;transform:translate(-50%,100%)}}@media screen and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-bottom-touch.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-bottom-touch.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-bottom-touch.has-tooltip-arrow:after{top:auto;right:auto;bottom:-1px;left:50%;margin:auto auto -5px -5px;border-color:transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-bottom-touch:before,[data-tooltip]:not(.is-loading).has-tooltip-bottom-touch:before,[data-tooltip]:not([disabled]).has-tooltip-bottom-touch:before{top:auto;right:auto;bottom:0;left:50%;margin-top:auto;margin-bottom:-5px;transform:translate(-50%,100%)}}@media screen and (min-width:1024px){[data-tooltip]:not(.is-disabled).has-tooltip-bottom-desktop.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-bottom-desktop.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-bottom-desktop.has-tooltip-arrow:after{top:auto;right:auto;bottom:-1px;left:50%;margin:auto auto -5px -5px;border-color:transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-bottom-desktop:before,[data-tooltip]:not(.is-loading).has-tooltip-bottom-desktop:before,[data-tooltip]:not([disabled]).has-tooltip-bottom-desktop:before{top:auto;right:auto;bottom:0;left:50%;margin-top:auto;margin-bottom:-5px;transform:translate(-50%,100%)}}@media screen and (min-width:1024px) and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-bottom-desktop-only.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-bottom-desktop-only.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-bottom-desktop-only.has-tooltip-arrow:after{top:auto;right:auto;bottom:-1px;left:50%;margin:auto auto -5px -5px;border-color:transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-bottom-desktop-only:before,[data-tooltip]:not(.is-loading).has-tooltip-bottom-desktop-only:before,[data-tooltip]:not([disabled]).has-tooltip-bottom-desktop-only:before{top:auto;right:auto;bottom:0;left:50%;margin-top:auto;margin-bottom:-5px;transform:translate(-50%,100%)}}@media screen and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-bottom-until-widescreen.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-bottom-until-widescreen.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-bottom-until-widescreen.has-tooltip-arrow:after{top:auto;right:auto;bottom:-1px;left:50%;margin:auto auto -5px -5px;border-color:transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-bottom-until-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-bottom-until-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-bottom-until-widescreen:before{top:auto;right:auto;bottom:0;left:50%;margin-top:auto;margin-bottom:-5px;transform:translate(-50%,100%)}}@media screen and (min-width:1216px){[data-tooltip]:not(.is-disabled).has-tooltip-bottom-widescreen.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-bottom-widescreen.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-bottom-widescreen.has-tooltip-arrow:after{top:auto;right:auto;bottom:-1px;left:50%;margin:auto auto -5px -5px;border-color:transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-bottom-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-bottom-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-bottom-widescreen:before{top:auto;right:auto;bottom:0;left:50%;margin-top:auto;margin-bottom:-5px;transform:translate(-50%,100%)}}@media screen and (min-width:1216px) and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-bottom-widescreen-only.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-bottom-widescreen-only.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-bottom-widescreen-only.has-tooltip-arrow:after{top:auto;right:auto;bottom:-1px;left:50%;margin:auto auto -5px -5px;border-color:transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-bottom-widescreen-only:before,[data-tooltip]:not(.is-loading).has-tooltip-bottom-widescreen-only:before,[data-tooltip]:not([disabled]).has-tooltip-bottom-widescreen-only:before{top:auto;right:auto;bottom:0;left:50%;margin-top:auto;margin-bottom:-5px;transform:translate(-50%,100%)}}@media screen and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-bottom-until-fullhd.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-bottom-until-fullhd.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-bottom-until-fullhd.has-tooltip-arrow:after{top:auto;right:auto;bottom:-1px;left:50%;margin:auto auto -5px -5px;border-color:transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-bottom-until-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-bottom-until-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-bottom-until-fullhd:before{top:auto;right:auto;bottom:0;left:50%;margin-top:auto;margin-bottom:-5px;transform:translate(-50%,100%)}}@media screen and (min-width:1408px){[data-tooltip]:not(.is-disabled).has-tooltip-bottom-fullhd.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-bottom-fullhd.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-bottom-fullhd.has-tooltip-arrow:after{top:auto;right:auto;bottom:-1px;left:50%;margin:auto auto -5px -5px;border-color:transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-bottom-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-bottom-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-bottom-fullhd:before{top:auto;right:auto;bottom:0;left:50%;margin-top:auto;margin-bottom:-5px;transform:translate(-50%,100%)}}@media screen and (max-width:768px){[data-tooltip]:not(.is-disabled).has-tooltip-left-mobile.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-left-mobile.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-left-mobile.has-tooltip-arrow:after{top:auto;right:auto;bottom:50%;left:0;margin:auto auto -6px -5px;border-color:transparent transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-left-mobile:before,[data-tooltip]:not(.is-loading).has-tooltip-left-mobile:before,[data-tooltip]:not([disabled]).has-tooltip-left-mobile:before{top:auto;right:auto;bottom:50%;left:-5px;transform:translate(-100%,50%)}}@media print,screen and (min-width:769px){[data-tooltip]:not(.is-disabled).has-tooltip-left-tablet.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-left-tablet.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-left-tablet.has-tooltip-arrow:after{top:auto;right:auto;bottom:50%;left:0;margin:auto auto -6px -5px;border-color:transparent transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-left-tablet:before,[data-tooltip]:not(.is-loading).has-tooltip-left-tablet:before,[data-tooltip]:not([disabled]).has-tooltip-left-tablet:before{top:auto;right:auto;bottom:50%;left:-5px;transform:translate(-100%,50%)}}@media screen and (min-width:769px) and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-left-tablet-only.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-left-tablet-only.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-left-tablet-only.has-tooltip-arrow:after{top:auto;right:auto;bottom:50%;left:0;margin:auto auto -6px -5px;border-color:transparent transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-left-tablet-only:before,[data-tooltip]:not(.is-loading).has-tooltip-left-tablet-only:before,[data-tooltip]:not([disabled]).has-tooltip-left-tablet-only:before{top:auto;right:auto;bottom:50%;left:-5px;transform:translate(-100%,50%)}}@media screen and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-left-touch.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-left-touch.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-left-touch.has-tooltip-arrow:after{top:auto;right:auto;bottom:50%;left:0;margin:auto auto -6px -5px;border-color:transparent transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-left-touch:before,[data-tooltip]:not(.is-loading).has-tooltip-left-touch:before,[data-tooltip]:not([disabled]).has-tooltip-left-touch:before{top:auto;right:auto;bottom:50%;left:-5px;transform:translate(-100%,50%)}}@media screen and (min-width:1024px){[data-tooltip]:not(.is-disabled).has-tooltip-left-desktop.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-left-desktop.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-left-desktop.has-tooltip-arrow:after{top:auto;right:auto;bottom:50%;left:0;margin:auto auto -6px -5px;border-color:transparent transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-left-desktop:before,[data-tooltip]:not(.is-loading).has-tooltip-left-desktop:before,[data-tooltip]:not([disabled]).has-tooltip-left-desktop:before{top:auto;right:auto;bottom:50%;left:-5px;transform:translate(-100%,50%)}}@media screen and (min-width:1024px) and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-left-desktop-only.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-left-desktop-only.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-left-desktop-only.has-tooltip-arrow:after{top:auto;right:auto;bottom:50%;left:0;margin:auto auto -6px -5px;border-color:transparent transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-left-desktop-only:before,[data-tooltip]:not(.is-loading).has-tooltip-left-desktop-only:before,[data-tooltip]:not([disabled]).has-tooltip-left-desktop-only:before{top:auto;right:auto;bottom:50%;left:-5px;transform:translate(-100%,50%)}}@media screen and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-left-until-widescreen.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-left-until-widescreen.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-left-until-widescreen.has-tooltip-arrow:after{top:auto;right:auto;bottom:50%;left:0;margin:auto auto -6px -5px;border-color:transparent transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-left-until-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-left-until-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-left-until-widescreen:before{top:auto;right:auto;bottom:50%;left:-5px;transform:translate(-100%,50%)}}@media screen and (min-width:1216px){[data-tooltip]:not(.is-disabled).has-tooltip-left-widescreen.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-left-widescreen.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-left-widescreen.has-tooltip-arrow:after{top:auto;right:auto;bottom:50%;left:0;margin:auto auto -6px -5px;border-color:transparent transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-left-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-left-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-left-widescreen:before{top:auto;right:auto;bottom:50%;left:-5px;transform:translate(-100%,50%)}}@media screen and (min-width:1216px) and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-left-widescreen-only.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-left-widescreen-only.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-left-widescreen-only.has-tooltip-arrow:after{top:auto;right:auto;bottom:50%;left:0;margin:auto auto -6px -5px;border-color:transparent transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-left-widescreen-only:before,[data-tooltip]:not(.is-loading).has-tooltip-left-widescreen-only:before,[data-tooltip]:not([disabled]).has-tooltip-left-widescreen-only:before{top:auto;right:auto;bottom:50%;left:-5px;transform:translate(-100%,50%)}}@media screen and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-left-until-fullhd.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-left-until-fullhd.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-left-until-fullhd.has-tooltip-arrow:after{top:auto;right:auto;bottom:50%;left:0;margin:auto auto -6px -5px;border-color:transparent transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-left-until-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-left-until-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-left-until-fullhd:before{top:auto;right:auto;bottom:50%;left:-5px;transform:translate(-100%,50%)}}@media screen and (min-width:1408px){[data-tooltip]:not(.is-disabled).has-tooltip-left-fullhd.has-tooltip-arrow:after,[data-tooltip]:not(.is-loading).has-tooltip-left-fullhd.has-tooltip-arrow:after,[data-tooltip]:not([disabled]).has-tooltip-left-fullhd.has-tooltip-arrow:after{top:auto;right:auto;bottom:50%;left:0;margin:auto auto -6px -5px;border-color:transparent transparent transparent rgba(74,74,74,.9)}[data-tooltip]:not(.is-disabled).has-tooltip-left-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-left-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-left-fullhd:before{top:auto;right:auto;bottom:50%;left:-5px;transform:translate(-100%,50%)}}@media screen and (max-width:768px){[data-tooltip]:not(.is-disabled).has-tooltip-hidden-mobile:after,[data-tooltip]:not(.is-disabled).has-tooltip-hidden-mobile:before,[data-tooltip]:not(.is-loading).has-tooltip-hidden-mobile:after,[data-tooltip]:not(.is-loading).has-tooltip-hidden-mobile:before,[data-tooltip]:not([disabled]).has-tooltip-hidden-mobile:after,[data-tooltip]:not([disabled]).has-tooltip-hidden-mobile:before{opacity:0!important;display:none!important}}@media print,screen and (min-width:769px){[data-tooltip]:not(.is-disabled).has-tooltip-hidden-tablet:after,[data-tooltip]:not(.is-disabled).has-tooltip-hidden-tablet:before,[data-tooltip]:not(.is-loading).has-tooltip-hidden-tablet:after,[data-tooltip]:not(.is-loading).has-tooltip-hidden-tablet:before,[data-tooltip]:not([disabled]).has-tooltip-hidden-tablet:after,[data-tooltip]:not([disabled]).has-tooltip-hidden-tablet:before{opacity:0!important;display:none!important}}@media screen and (min-width:769px) and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-hidden-tablet-only:after,[data-tooltip]:not(.is-disabled).has-tooltip-hidden-tablet-only:before,[data-tooltip]:not(.is-loading).has-tooltip-hidden-tablet-only:after,[data-tooltip]:not(.is-loading).has-tooltip-hidden-tablet-only:before,[data-tooltip]:not([disabled]).has-tooltip-hidden-tablet-only:after,[data-tooltip]:not([disabled]).has-tooltip-hidden-tablet-only:before{opacity:0!important;display:none!important}}@media screen and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-hidden-touch:after,[data-tooltip]:not(.is-disabled).has-tooltip-hidden-touch:before,[data-tooltip]:not(.is-loading).has-tooltip-hidden-touch:after,[data-tooltip]:not(.is-loading).has-tooltip-hidden-touch:before,[data-tooltip]:not([disabled]).has-tooltip-hidden-touch:after,[data-tooltip]:not([disabled]).has-tooltip-hidden-touch:before{opacity:0!important;display:none!important}}@media screen and (min-width:1024px){[data-tooltip]:not(.is-disabled).has-tooltip-hidden-desktop:after,[data-tooltip]:not(.is-disabled).has-tooltip-hidden-desktop:before,[data-tooltip]:not(.is-loading).has-tooltip-hidden-desktop:after,[data-tooltip]:not(.is-loading).has-tooltip-hidden-desktop:before,[data-tooltip]:not([disabled]).has-tooltip-hidden-desktop:after,[data-tooltip]:not([disabled]).has-tooltip-hidden-desktop:before{opacity:0!important;display:none!important}}@media screen and (min-width:1024px) and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-hidden-desktop-only:after,[data-tooltip]:not(.is-disabled).has-tooltip-hidden-desktop-only:before,[data-tooltip]:not(.is-loading).has-tooltip-hidden-desktop-only:after,[data-tooltip]:not(.is-loading).has-tooltip-hidden-desktop-only:before,[data-tooltip]:not([disabled]).has-tooltip-hidden-desktop-only:after,[data-tooltip]:not([disabled]).has-tooltip-hidden-desktop-only:before{opacity:0!important;display:none!important}}@media screen and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-hidden-until-widescreen:after,[data-tooltip]:not(.is-disabled).has-tooltip-hidden-until-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-hidden-until-widescreen:after,[data-tooltip]:not(.is-loading).has-tooltip-hidden-until-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-hidden-until-widescreen:after,[data-tooltip]:not([disabled]).has-tooltip-hidden-until-widescreen:before{opacity:0!important;display:none!important}}@media screen and (min-width:1216px){[data-tooltip]:not(.is-disabled).has-tooltip-hidden-widescreen:after,[data-tooltip]:not(.is-disabled).has-tooltip-hidden-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-hidden-widescreen:after,[data-tooltip]:not(.is-loading).has-tooltip-hidden-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-hidden-widescreen:after,[data-tooltip]:not([disabled]).has-tooltip-hidden-widescreen:before{opacity:0!important;display:none!important}}@media screen and (min-width:1216px) and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-hidden-widescreen-only:after,[data-tooltip]:not(.is-disabled).has-tooltip-hidden-widescreen-only:before,[data-tooltip]:not(.is-loading).has-tooltip-hidden-widescreen-only:after,[data-tooltip]:not(.is-loading).has-tooltip-hidden-widescreen-only:before,[data-tooltip]:not([disabled]).has-tooltip-hidden-widescreen-only:after,[data-tooltip]:not([disabled]).has-tooltip-hidden-widescreen-only:before{opacity:0!important;display:none!important}}@media screen and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-hidden-until-fullhd:after,[data-tooltip]:not(.is-disabled).has-tooltip-hidden-until-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-hidden-until-fullhd:after,[data-tooltip]:not(.is-loading).has-tooltip-hidden-until-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-hidden-until-fullhd:after,[data-tooltip]:not([disabled]).has-tooltip-hidden-until-fullhd:before{opacity:0!important;display:none!important}}@media screen and (min-width:1408px){[data-tooltip]:not(.is-disabled).has-tooltip-hidden-fullhd:after,[data-tooltip]:not(.is-disabled).has-tooltip-hidden-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-hidden-fullhd:after,[data-tooltip]:not(.is-loading).has-tooltip-hidden-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-hidden-fullhd:after,[data-tooltip]:not([disabled]).has-tooltip-hidden-fullhd:before{opacity:0!important;display:none!important}}@media screen and (max-width:768px){[data-tooltip]:not(.is-disabled).has-tooltip-text-left-mobile:before,[data-tooltip]:not(.is-loading).has-tooltip-text-left-mobile:before,[data-tooltip]:not([disabled]).has-tooltip-text-left-mobile:before{text-align:left}}@media print,screen and (min-width:769px){[data-tooltip]:not(.is-disabled).has-tooltip-text-left-tablet:before,[data-tooltip]:not(.is-loading).has-tooltip-text-left-tablet:before,[data-tooltip]:not([disabled]).has-tooltip-text-left-tablet:before{text-align:left}}@media screen and (min-width:769px) and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-text-left-tablet-only:before,[data-tooltip]:not(.is-loading).has-tooltip-text-left-tablet-only:before,[data-tooltip]:not([disabled]).has-tooltip-text-left-tablet-only:before{text-align:left}}@media screen and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-text-left-touch:before,[data-tooltip]:not(.is-loading).has-tooltip-text-left-touch:before,[data-tooltip]:not([disabled]).has-tooltip-text-left-touch:before{text-align:left}}@media screen and (min-width:1024px){[data-tooltip]:not(.is-disabled).has-tooltip-text-left-desktop:before,[data-tooltip]:not(.is-loading).has-tooltip-text-left-desktop:before,[data-tooltip]:not([disabled]).has-tooltip-text-left-desktop:before{text-align:left}}@media screen and (min-width:1024px) and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-text-left-desktop-only:before,[data-tooltip]:not(.is-loading).has-tooltip-text-left-desktop-only:before,[data-tooltip]:not([disabled]).has-tooltip-text-left-desktop-only:before{text-align:left}}@media screen and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-text-left-until-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-text-left-until-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-text-left-until-widescreen:before{text-align:left}}@media screen and (min-width:1216px){[data-tooltip]:not(.is-disabled).has-tooltip-text-left-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-text-left-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-text-left-widescreen:before{text-align:left}}@media screen and (min-width:1216px) and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-text-left-widescreen-only:before,[data-tooltip]:not(.is-loading).has-tooltip-text-left-widescreen-only:before,[data-tooltip]:not([disabled]).has-tooltip-text-left-widescreen-only:before{text-align:left}}@media screen and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-text-left-until-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-text-left-until-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-text-left-until-fullhd:before{text-align:left}}@media screen and (min-width:1408px){[data-tooltip]:not(.is-disabled).has-tooltip-text-left-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-text-left-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-text-left-fullhd:before{text-align:left}}@media screen and (max-width:768px){[data-tooltip]:not(.is-disabled).has-tooltip-text-centered-mobile:before,[data-tooltip]:not(.is-loading).has-tooltip-text-centered-mobile:before,[data-tooltip]:not([disabled]).has-tooltip-text-centered-mobile:before{text-align:center}}@media print,screen and (min-width:769px){[data-tooltip]:not(.is-disabled).has-tooltip-text-centered-tablet:before,[data-tooltip]:not(.is-loading).has-tooltip-text-centered-tablet:before,[data-tooltip]:not([disabled]).has-tooltip-text-centered-tablet:before{text-align:center}}@media screen and (min-width:769px) and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-text-centered-tablet-only:before,[data-tooltip]:not(.is-loading).has-tooltip-text-centered-tablet-only:before,[data-tooltip]:not([disabled]).has-tooltip-text-centered-tablet-only:before{text-align:center}}@media screen and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-text-centered-touch:before,[data-tooltip]:not(.is-loading).has-tooltip-text-centered-touch:before,[data-tooltip]:not([disabled]).has-tooltip-text-centered-touch:before{text-align:center}}@media screen and (min-width:1024px){[data-tooltip]:not(.is-disabled).has-tooltip-text-centered-desktop:before,[data-tooltip]:not(.is-loading).has-tooltip-text-centered-desktop:before,[data-tooltip]:not([disabled]).has-tooltip-text-centered-desktop:before{text-align:center}}@media screen and (min-width:1024px) and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-text-centered-desktop-only:before,[data-tooltip]:not(.is-loading).has-tooltip-text-centered-desktop-only:before,[data-tooltip]:not([disabled]).has-tooltip-text-centered-desktop-only:before{text-align:center}}@media screen and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-text-centered-until-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-text-centered-until-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-text-centered-until-widescreen:before{text-align:center}}@media screen and (min-width:1216px){[data-tooltip]:not(.is-disabled).has-tooltip-text-centered-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-text-centered-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-text-centered-widescreen:before{text-align:center}}@media screen and (min-width:1216px) and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-text-centered-widescreen-only:before,[data-tooltip]:not(.is-loading).has-tooltip-text-centered-widescreen-only:before,[data-tooltip]:not([disabled]).has-tooltip-text-centered-widescreen-only:before{text-align:center}}@media screen and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-text-centered-until-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-text-centered-until-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-text-centered-until-fullhd:before{text-align:center}}@media screen and (min-width:1408px){[data-tooltip]:not(.is-disabled).has-tooltip-text-centered-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-text-centered-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-text-centered-fullhd:before{text-align:center}}@media screen and (max-width:768px){[data-tooltip]:not(.is-disabled).has-tooltip-text-right-mobile:before,[data-tooltip]:not(.is-loading).has-tooltip-text-right-mobile:before,[data-tooltip]:not([disabled]).has-tooltip-text-right-mobile:before{text-align:right}}@media print,screen and (min-width:769px){[data-tooltip]:not(.is-disabled).has-tooltip-text-right-tablet:before,[data-tooltip]:not(.is-loading).has-tooltip-text-right-tablet:before,[data-tooltip]:not([disabled]).has-tooltip-text-right-tablet:before{text-align:right}}@media screen and (min-width:769px) and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-text-right-tablet-only:before,[data-tooltip]:not(.is-loading).has-tooltip-text-right-tablet-only:before,[data-tooltip]:not([disabled]).has-tooltip-text-right-tablet-only:before{text-align:right}}@media screen and (max-width:1023px){[data-tooltip]:not(.is-disabled).has-tooltip-text-right-touch:before,[data-tooltip]:not(.is-loading).has-tooltip-text-right-touch:before,[data-tooltip]:not([disabled]).has-tooltip-text-right-touch:before{text-align:right}}@media screen and (min-width:1024px){[data-tooltip]:not(.is-disabled).has-tooltip-text-right-desktop:before,[data-tooltip]:not(.is-loading).has-tooltip-text-right-desktop:before,[data-tooltip]:not([disabled]).has-tooltip-text-right-desktop:before{text-align:right}}@media screen and (min-width:1024px) and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-text-right-desktop-only:before,[data-tooltip]:not(.is-loading).has-tooltip-text-right-desktop-only:before,[data-tooltip]:not([disabled]).has-tooltip-text-right-desktop-only:before{text-align:right}}@media screen and (max-width:1215px){[data-tooltip]:not(.is-disabled).has-tooltip-text-right-until-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-text-right-until-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-text-right-until-widescreen:before{text-align:right}}@media screen and (min-width:1216px){[data-tooltip]:not(.is-disabled).has-tooltip-text-right-widescreen:before,[data-tooltip]:not(.is-loading).has-tooltip-text-right-widescreen:before,[data-tooltip]:not([disabled]).has-tooltip-text-right-widescreen:before{text-align:right}}@media screen and (min-width:1216px) and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-text-right-widescreen-only:before,[data-tooltip]:not(.is-loading).has-tooltip-text-right-widescreen-only:before,[data-tooltip]:not([disabled]).has-tooltip-text-right-widescreen-only:before{text-align:right}}@media screen and (max-width:1407px){[data-tooltip]:not(.is-disabled).has-tooltip-text-right-until-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-text-right-until-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-text-right-until-fullhd:before{text-align:right}}@media screen and (min-width:1408px){[data-tooltip]:not(.is-disabled).has-tooltip-text-right-fullhd:before,[data-tooltip]:not(.is-loading).has-tooltip-text-right-fullhd:before,[data-tooltip]:not([disabled]).has-tooltip-text-right-fullhd:before{text-align:right}}span[data-tooltip]{border-bottom:1px dashed #dbdbdb}span[data-tooltip].has-tooltip-white{border-bottom-color:#fff}span[data-tooltip].has-tooltip-black{border-bottom-color:#171717}span[data-tooltip].has-tooltip-light{border-bottom-color:#fff}span[data-tooltip].has-tooltip-dark{border-bottom-color:#424242}span[data-tooltip].has-tooltip-primary{border-bottom-color:#00ebc7}span[data-tooltip].has-tooltip-link{border-bottom-color:#4882e0}span[data-tooltip].has-tooltip-info{border-bottom-color:#48a3e0}span[data-tooltip].has-tooltip-success{border-bottom-color:#5bcd83}span[data-tooltip].has-tooltip-warning{border-bottom-color:#ffe270}span[data-tooltip].has-tooltip-danger{border-bottom-color:#f35e7c}.control span[data-tooltip]{border-bottom:none} \ No newline at end of file diff --git a/superx/xml/pageComponents_html.xsl b/superx/xml/pageComponents_html.xsl index 7eec55b..850065a 100644 --- a/superx/xml/pageComponents_html.xsl +++ b/superx/xml/pageComponents_html.xsl @@ -865,7 +865,7 @@ document.forms[0].target = '_blank'; Spaltensortierung- und Reihenfolge festlegen
                                                                                                                                                                                                                                              , Spalten entfernen
                                                                                                                                                                                                                                              - Konfiguration der Tabelle + Konfiguration der Tabelle