Please enable JavaScript to view this site.

Estate Forums

The storage layer consists of normalized tables with a name beginning with a code usually between two and four letters followed by a dash (‘_’). All these tables have a comparable structure, such as the table in which orders are registered:

 

create table bubs_opdrachten

( id                      number(15)            not null /* De id kolom is altijd de primaire sleutel. */

, datum_verlening         date                  not null /* Een opdracht-specifiek veld. Merk op dat de naam van datum velden altijd begint met ‘datum_’. */

, volgnummer              varchar2(6 char)      not null /* Een opdracht-specifiek veld. Merk op dat de lengte van varchar velden altijd uitgedrukt

                                                           wordt in karakters (‘char’), zodat de applicatie volledig Unicode-geschikt is. */

, toelichting             varchar2(240 char)

, bedrag_verlening        number(13,2)          not null /* Een opdracht-specifiek veld. Merk op dat de naam van bedragen altijd begint met ‘bedrag_’.

                                                           Bovendien is het datatype van een bedrag altijd ‘number(13,2)’. */

, kps_id                  number(15)            not null /* Een verwijzing naar een andere tabel, in dit geval naar de tabel met afkorting ‘kps’.

                                                           Deze afkortingen zijn terug te vinden in bubs_tabellen_r. */

, lvr_id                  number(15)            not null

, orig_system_reference   varchar2(240 char)             /* Een optioneel veld, waarin voor gegevens die geconverteerd of geladen zijn uit een

                                                           ander systeem de herkomst vastgelegd kan worden. */

, datum_intrf_geladen     date                           /* Het tijdstip waarop de gegevens vanuit een ander systeem geladen zijn. */

, datum_intrf_bijgewerkt  date                           /* Het tijdstip waarop de gegevens vanuit een ander systeem voor het laatst geladen of bijgewerkt zijn. */

, datum_aangemaakt        date                  not null /* Het tijdstip waarop het gegeven vastgelegd is. */

, aangemaakt_door         varchar2(128 char)    not null /* De gebruikersnaam van de gebruiker die het gegeven vastgelegd heeft. */

, aangemaakt_in           varchar2(128 char)    not null /* De naam van het scherm waarin het gegeven vastgelegd is. */

, datum_bijgewerkt        date                  not null /* Het tijdstip waarop het gegeven de laatste keer gewijzigd is. */

, bijgewerkt_door         varchar2(128 char)    not null /* De gebruikersnaam van de gebruiker die het gegeven de laatste keer gewijzigd heeft. */

, bijgewerkt_in           varchar2(128 char)    not null /* De naam van het scherm waarin het gegeven de laatste keer gewijzigd is. */

, transactie_aangemaakt   number(15)            not null /* Het nummer van de transactie in bubs_transacties_v waarmee het gegeven vastgelegd is. */

, transactie_bijgewerkt   number(15)            not null /* Het nummer van de transactie in bubs_transacties_v waarmee het gegeven de laatste keer gewijzigd is. */

, kolom_soort             varchar2(240 char)             /* Een specificatie van de inhoud van de vrije tekst kolommen kolom1..kolom10. */

, kolom1                  varchar2(240 char)             /* Vrije tekst kolommen. Gebruik te bepalen door de organisatie die de applicatie gebruikt. */

, kolom2                  varchar2(240 char)

, kolom3                  varchar2(240 char)

, kolom4                  varchar2(240 char)

, kolom5                  varchar2(240 char)

, kolom6                  varchar2(240 char)

, kolom7                  varchar2(240 char)

, kolom8                  varchar2(240 char)

, kolom9                  varchar2(240 char)

, kolom10                 varchar2(240 char)

, primary key(id)                                        /* Het vastleggen van de primaire sleutel. */

, constraint bubs_odt_kps_fk                             /* De referentiele constraint van de opdracht naar de kostenplaatsen. */

 foreign key (kps_id)                                   /* Merk op dat de naam gelijk is aan ‘bubs_<AFKORTING HERKOMST>_<AFKORTING DOEL>_fk’. */

 references bubs_kostenplaatsen (id)

, constraint bubs_odt_lvr_fk

 foreign key (lvr_id)

 references bubs_leveranciers (id)

)

/

 

Besides of the primary key there is a natural unique key for each table. In discussions this one can be treated as a real primary key. However, for technical reasons (for example, like being able to update the contract ) the choice was made, to have a separate technical primary key. The name of the natural key index is always ‘bubs_<AFKORTING TABEL>_NK’.

create unique index bubs_odt_nk

on bubs_opdrachten

(kps_id, contract)

/

 

For every referential constraint a so-called referential index will be created in order to prevent problems with the locking up of rows and to speed up searches.

create index bubs_odt_kps_fk

on bubs_opdrachten

(kps_id)

/

 

create index bubs_odt_lvr_fk

on bubs_opdrachten

(lvr_id)

/

 

The reference to the source system must be unique if it is known. In case orig_system_reference is empty, the column does not have to be unique.

create unique index bubs_odt_uk_orig

on bubs_opdrachten

(orig_system_reference)

/

The documentation of the table structure is reflected in the Technical Management screens like Tables and in the business views bubs_tabellen_r and bubs_kolommen_r.

The content of the tables must never be changed directly. This is always done using the business and report views.

X

Important Safety and Usage Information

Intended Use and Limitations: This software, developed by Invantive, is designed to support a variety of business and information technology data processing functions, such as accounting, financial reporting an sales reporting. It is important to note that this software is not designed, tested, or approved for use in environments where malfunction or failure could lead to life-threatening situations or severe physical or environmental damage. This includes, but is not limited to:

  • Nuclear facilities: The software should not be used for operations or functions related to the control, maintenance, or operation of nuclear facilities.
  • Defense and Military Applications: This software is not suitable for use in defense-related applications, including but not limited to weaponry control, military strategy planning, or any other aspects of national defense.
  • Aviation: The software is not intended for use in the operation, navigation, or communication systems of any aircraft or air traffic control environments.
  • Healthcare and Medicine Production: This software should not be utilized for medical device operation, patient data analysis for critical health decisions, pharmaceutical production, or medical research where its failure or malfunction could impact patient health.
  • Chemical and Hazardous Material Handling: This software is not intended for the management, control, or operational aspects of chemical plants or hazardous material handling facilities. Any malfunction in software used in these settings could result in dangerous chemical spills, explosions, or environmental disasters.
  • Transportation and Traffic Control Systems: The software should not be used for the control, operation, or management of transportation systems, including railway signal controls, subway systems, or traffic light management. Malfunctions in such critical systems could lead to severe accidents and endanger public safety.
  • Energy Grid and Utility Control Systems: This software is not designed for the control or operation of energy grid systems, including electrical substations, renewable energy control systems, or water utility control systems. The failure of software in these areas could lead to significant power outages, water supply disruptions, or other public utility failures, potentially endangering communities and causing extensive damage.
  • Other High-Risk Environments: Any other critical infrastructure and environments where a failure of the software could result in significant harm to individuals or the environment.

User Responsibility: Users must ensure that they understand the intended use of the software and refrain from deploying it in any setting that falls outside of its designed purpose. It is the responsibility of the user to assess the suitability of the software for their intended application, especially in any scenarios that might pose a risk to life, health, or the environment.

Disclaimer of Liability: Invantive disclaims any responsibility for damage, injury, or legal consequences resulting from the use or misuse of this software in prohibited or unintended applications.

  
Disclaimer