Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
tutorial:adm:vema_cloud [2019/08/07 10:57]
poulm created
tutorial:adm:vema_cloud [2022/04/05 14:53] (current)
stekld
Line 1: Line 1:
 ====== Systems - VEMA: Synchronization ====== ====== Systems - VEMA: Synchronization ======
  
 +You may have VEMA installed locally or in the cloud. The basic principals of integration of VEMA and VEMA Cloud with CzechIdM are very similar or the same. In both cases we will use an external MS-SQL database "Interchange" to store the data from VEMA which will be read by CzechIdM. We will also need a server with the VEMA thick client installed.
 +
 +  * VEMA PAM - work and payroll data(Prace a mzdy)
 +  * VEMA PER - personel/HR data(Personalistika)
 +
 +===== VEMA cloud =====
 +
 +  - Prepare the Windows server with VEMA thick client
 +      * It's necessary to install **v4data**  package. Start VEMA Administrator, go to the "Products" tab, invoke context menu by clicking the right mouse button and select "Install". Then choose the lastest version of in the dialog.
 +
 +  - Prepare MS-SQL database for the "Interchange".
 +  - Install the scripts:
 +      - Create an user in VEMA with a permission to switch to the admin role and with access to the personal data (recommended role name = "IDM export"). Emit a certificate for this user and install it to the server with the VEMA client. You can check the installation correctness with running following command:
 +
 +<code cmd>
 +C:\Program Files (x86)\Vema\Vema.exe" /app=DBV HR PAM /server=your_id.cloud.vema.cz /username=your_username /world=your_ID
 +
 +
 +</code>
 +
 +  - Create a database user in MS-SQL database "Interchange" with permission to read&write to the database and schema. It needs to be a local user, domain authentication doesn't work within the scripts.
 +  - Create the MS-SQL "Interchange" database structure. Using following script is recommended to get the default structure.
 +
 +<code>
 +-- create table skript pro vytvoreni tabulek v MS SQL pro export z Vema
 +-- if 'nchar' doesn't work, change it for 'char' and vice-versa - the reason is that the Python module from Vema can't compare varchar -> comparison always ends up with false so all records are marked as "changed"
 +
 +CREATE TABLE "dbo"."tpzr"
 +(
 +   pzar INT PRIMARY KEY NOT NULL,
 +   pzart NCHAR(255)
 +);
 +CREATE UNIQUE INDEX PK_TPZR ON "dbo"."tpzr"(pzar);
 +
 +CREATE TABLE "dbo"."todp"
 +(
 +   povfc INT PRIMARY KEY NOT NULL,
 +   povfct NCHAR(255)
 +);
 +CREATE UNIQUE INDEX PK_TODP ON "dbo"."todp"(povfc);
 +
 +CREATE TABLE "dbo"."tkat"
 +(
 +   kat INT PRIMARY KEY NOT NULL,
 +   katt NCHAR(255)
 +);
 +CREATE UNIQUE INDEX PK_TKAT ON "dbo"."tkat"(kat);
 +
 +CREATE TABLE "dbo"."todz"
 +(
 +   zames INT PRIMARY KEY NOT NULL,
 +   czisco NCHAR(10),
 +   kateg INT,
 +   skjkz INT,
 +   povfc INT,
 +   funkc INT,
 +   povolani NCHAR(255),
 +   pocrd INT,
 +   platnost INT,
 +   zamest NCHAR(255),
 +   zamest1 NCHAR(255),
 +   zamest2 NCHAR(255)
 +)
 +;
 +
 +CREATE TABLE "dbo"."tros"
 +(
 +   ros INT PRIMARY KEY NOT NULL,
 +   rost NCHAR(255)
 +);
 +
 +CREATE TABLE "dbo"."osobyt" (
 +    oscis int NOT NULL,
 +    jmenozd varchar(250) COLLATE Czech_CI_AS NULL,
 +    prijmzd varchar(250) COLLATE Czech_CI_AS NULL,
 +    tituly varchar(250) COLLATE Czech_CI_AS NULL,
 +    rosu int NULL,
 +    full_update_timestamp datetime NOT NULL,
 +    greatest_timestamp datetime NOT NULL,
 +    rocis varchar(250) COLLATE Czech_CI_AS NULL
 +);
 +
 +CREATE TABLE "dbo"."pzarazx"
 +(
 +   oscis INT NOT NULL,
 +   cicin INT NOT NULL,
 +   povfc INT DEFAULT (NULL),
 +   kateg INT DEFAULT (NULL),
 +   pracvz INT DEFAULT (NULL),
 +   pzar INT DEFAULT (NULL),
 +   utvar NCHAR(6) DEFAULT (NULL),
 +   zauc datetime NOT NULL,
 +   zapl datetime DEFAULT (NULL),
 +   ppvdr INT DEFAULT (NULL),
 +   povfct1 INT DEFAULT (NULL),
 +   zames INT DEFAULT (NULL),
 +   full_update_timestamp datetime DEFAULT (getdate()) NOT NULL,
 +   CONSTRAINT PK__pzarazx__D560F4C128ED12D1 PRIMARY KEY (oscis,cicin,zauc)
 +);
 +
 +CREATE TABLE "dbo"."smlouvax"
 +(
 +   oscis INT NOT NULL,
 +   cicin INT NOT NULL,
 +   ppvza datetime NOT NULL,
 +   ppvko datetime DEFAULT (NULL),
 +   full_update_timestamp datetime DEFAULT (getdate()) NOT NULL,
 +   CONSTRAINT PK__smlouvax__3E3BBE5213F1F5EB PRIMARY KEY (oscis,cicin,ppvza)
 +);
 +
 +CREATE TABLE "dbo"."vynetix"
 +(
 +   oscis INT NOT NULL,
 +   vynz datetime NOT NULL,
 +   vynk datetime DEFAULT (NULL),
 +   vynd INT NOT NULL,
 +   full_update_timestamp datetime DEFAULT (getdate()) NOT NULL,
 +   CONSTRAINT PK__vynetix__8758F81519AACF41 PRIMARY KEY (oscis,vynz,vynd)
 +);
 +
 +CREATE TABLE tutv (
 +    utvar NCHAR(50) NOT NULL,
 +    utvart NCHAR(255) DEFAULT NULL,
 +    zapl datetime DEFAULT NULL,
 +    kopl datetime DEFAULT NULL,
 +    zkratka NCHAR(20) DEFAULT NULL,
 +    CONSTRAINT utvar_pkey PRIMARY KEY (utvar)
 +);
 +
 +CREATE TABLE czisco (
 +    czisco NCHAR(10) NOT NULL,
 +    praczar NCHAR(255) NOT NULL,
 +    praczarzk NCHAR(10) NOT NULL,
 +    CONSTRAINT czisco_pkey PRIMARY KEY (czisco)
 +);
 +
 +</code>
 +
 +  - Install test scripts to a folder and change the log file path according to your environment. Default is ''C:\VemaV4\idmlogs\export_vymenik_log.txt''
 +      - test3.py:
 +
 +<code python>
 +# -*- coding: utf-8 -*-
 +
 +from __future__ import unicode_literals
 +from vmsys import RunAppFile
 +from v4data.dbv import DBVDatabase, DBVData, DBVApp
 +from v4core.meta import Property, PNumber
 +
 +def LogInfo(message):
 +    log = open('C:\\VemaV4\\idmlogs\\export_vymenik_log.txt', 'a')
 +    log.write(u' INFO: ' + message + '\n')
 +    log.close()
 +
 +class PersInfoTable(DBVData):
 +    fileName = 'osobyt'
 +
 +class PAM(DBVDatabase):
 +    data = [PersInfoTable]
 +
 +class MyApp(DBVApp):
 +    db = PAM
 +    def run(self):
 +        for row in self.db.PersInfoTable():
 +            LogInfo(u'TEST - KOMUNIKACE S VEMA DB' + str(row.oscis) + u' ' + row.prijmzd);
 +            break;
 +
 +main = MyApp
 +
 +
 +</code>
 +
 +  - test6.py:
 +
 +<code python>
 +# -*- coding: utf-8 -*-
 +
 +from __future__ import unicode_literals
 +from vmsys import RunAppFile
 +from v4data.dbv import DBVDatabase, DBVData, DBVApp
 +from v4core.meta import Property, PNumber
 +import PyVRDA, pyodbc
 +
 +def LogInfo(message):
 +    log = open('C:\\VemaV4\\idmlogs\\export_vymenik_log.txt', 'a')
 +    log.write(u' INFO: ' + message + '\n')
 +    log.close()
 +
 +class MyApp(DBVApp):
 +    def run(self):
 +
 +    conn = pyodbc.connect('DRIVER={ODBC Driver 13 for SQL Server};SERVER=127.0.0.1;DATABASE=001;UID=vema;PWD=********')
 +        cursor = conn.cursor()
 +        cursor.execute('INSERT INTO osobyt (oscis) VALUES (123)')
 +    conn.commit()
 +        LogInfo(u'connectDB: COMMIT')
 +    conn.close()
 +
 +        LogInfo(u'Export DB connected')
 +
 +main = MyApp
 +
 +
 +</code>
 +
 +  - Run the test scripts
 +
 +<code cmd>
 +C:\Program Files (x86)\Vema\Vema.exe" /app=pyscript test6.py /database=DB_NAME /server=cloud.vema.cz /world=your_ID /databasePER=DB_PER_NAME /serverPER=your_ID.cloud.vema.cz /application=pam /roleName="IDM export" /username=login
 +
 +
 +</code>
 +
 +<code cmd>
 +C:\Program Files (x86)\Vema\Vema.exe" /app=pyscript test3.py /database=DB_NAME /server=cloud.vema.cz /world=your_ID /databasePER=DB_PER_NAME /serverPER=your_ID.cloud.vema.cz /application=pam /roleName="IDM export" /username=login
 +
 +
 +</code>
 +
 +  - the path to the ''Vema.exe''  might differ according to a certain installation
 +  - Check the results
 +
 +  * test3.py - tests the communication with VEMA. Note: You might need to change the name of data file you want to read from. The default is "osobyt" in database PAM. In other cases it might be "osobyx" in database PER.
 +  * test6.py - tests ability to write into the "Interchange" database. Fill the following values (SERVER=…,DATABASE=…,UID=….,PWD=….), you might also need to change the table from "osobyt" to "osobyx".
 +  * **Expected results:**
 +      - No errors while running the scripts
 +      - test3.py: Writest a list of family names from VEMA's data file to the log file ''C:\\VemaV4\\idmlogs\\export_vymenik_log.txt''
 +      - test6.py: Inserts a record into the table osobyt in the "Interchange" database. The record will have value of "oscis" 123 and a info message is written into the log file ''C:\\VemaV4\\idmlogs\\export_vymenik_log.txt''
 +
 +===== Local VEMA installation =====
  
 BOTH local and cloud solutions pleas. TODO BOTH local and cloud solutions pleas. TODO
 +
 +===== Common part =====
 +
 +Then you need to implement a certain script which will read the data you want from VEMA and write them to the "Interchange" database. Also you might need to alter the tables according the data you read. Scripts above are just an examples.
 +
 +The script must be run automatically e.g. once a day.
 +
 +In IDM you will create a System with the Database Table Connector or Scripted SQL Connector according to the certain use-case. The first case is covered tutorials [[.:systems_db_contracts|]] and [[.:connect_a_db_system|]].
 +
 +
  • by poulm