Role Allen Overy
September 2022 to January 2023.
Introduction
This was a 100% work from home project (remote).
Applications DBA (Apps DBA), supporting production "Carpe Diem", InTapp "Open", and "3E" systems.
Most of the work was picking up user tickets from the "helix" servicedesk system, and investigating and resolving problems.
Problems would typically involve working with one or more of the FSG (Finance Support Group) group,
Carpe Diem
This is a desktop application that runs on users' laptops. With a SQL Server back end.
It is used by the company's lawyers to record the time they spend on working on client "Matters". They do this by creating a "smart timer" object in the application, click on it to start it running, and then clicking it again when they have finished or need to take a break.
Once finished they create a timesheet entry for the smart timer, associated with the matter and client.
And they then click Submit to submit it to the back end.
Once submitted it goes though the Carpe Diem databases via SQL agent SQL agent jobs (running Powershell scripts typically), into 3E, and then eventually into the "Open" system.
There were problems associated with this data flow process, but we generally had to ask FSG to investigate, as our knowledge of 3E was limited.
Problems with Carpe Diem we were able to investigate were where the user's profile had become corrupted in the database (delete their entry in the CDUSRINI table, letting it regenerate).
Also deleting their local config file on their laptop - this could be accessed across the network, knowing their machine name, via the C$ share)
If the set of smart timers they have configured in their smart timers window (typically one for each client), had gone missing, we could run an update statement on the CDUSERST table to set the smart timers for our own account to be the same as theirs, in order to try to replicate the problem.
To fix the problem if we see these have become corrupted, is to restore to the table (their account) from the backup table CDUSERST_BACKUP from the previous day when they were OK - this is because these are backed up to this table daily.
The different countries that the company operates in, each have their own Carpe Diem databases. Therefore it is necessary to set up a login to use to log in on each of them. To tell your client which one to log into, there is a local registry port number and server.
Interestingly though, there is a single CDADMIN app where you create these accounts. This app already knows all of the servers to connect to (presumably from a .ini file?), so all you need to do is select the region from a popup list.
Note that for each login, in the CDADMIN app you can assign a timekeeper ID, which is a 4-character code, to any fee earner. This lets you see that fee earner's timesheet.
Normally these are assigned to the same person's account. The purpose of this is to allow a different user, for example a PA, to complete the timesheet on behalf of a different person (typically a solicitor or partner).
InTapp Open
The "InTapp Open" system is used to manage the matters themselves.
The main product that the company sells is the body of work done for a defined purpose for a client, by one or more lawyers.
This body of work is called a "Matter"
Each Matter is given a name like: 0121728-0000005
The first 0121728 is the client number (note this is a string, not an int), and the second 0000005 means it is the fifth Matter assigned to this client.
The "Open" system creates the workflow processes that create ("Matter Initiate"), and maintain ("Matter Maintenance") each matter, ensuring that the correct checks and due-diligence is done with this highly regulated activity.
In order to do one of these things (initiate, or maintenance) you raise a "Request". A Request has a 6-digit ID number, and can be searched for by this Request number of the underlying matter number in the main "Open" web page.
The Open web page lists the current state of the Request, with information that has already been entered, information that is already present in the underlying Matter, and a statement of what now needs to be done to progress the Request.
For example one check is money-laundering checks (typically this is done for new clients by the BAU - Business Acceptance Unit team).
Another is approval by the Partner (the head lawyer who is in charge of the Matter).
Once all approvals and checks are complete, the Request reaches state "Complete", and the status of the underlying Matter advances to the state that the Request was originally raised to achieve (i.e. to open the matter in the case of a Matter Initiation Request, or close or change it in the case of a Matter Maintenance Request).
Note that "Request" with a capital R is a noun here - it is an object in the database.
The opendb SQL Server database has the "Work" table with a row for each Matter
The "Requests" table with the Requests
"Client" or "Clients" holds the clients
The "FormAnswers" table holds more information about Requests.
When a Request needs to send data into 3E, it communicates to 3E over the network. These calls are recorded in the "Pinnacle" tables, in XML format. If something is not getting into 3E you can query this table to see what Open tried to send, and what error or response it got back from 3E.
"Virtual File Name" is another field holding the name of the Matter.
Never delete or cancel a Request. If a user wants a Request to be cancelled, you can set it back to state "initial", and add the user to the ACL list if necessary - and then advise the user that they can now cancel the Request.
Administration - Forms: This has a set of forms that are templates for certain categories of Request.
3E
The 3E system is the system that holds details of the matters. We don't do much with it, generally passing calls to the FSG team.
There is a web front end where Matters and details about Matters can be seen.
Gett
The Gett data feed was a SQL Agent job that I set up, to send a list of persons and matters to extenal company Gett, to allow Gett to offer a taxi booking service. The list of matters allowed these taxis to be booked against a particular person and matter, for billing purposes.
It ran a number of Powershell scripts.
These ran SQL code to get the data, write it to a file on a share, set it to the UTF-8 character set, and then run a sFTP command on a remote web server (that had internet access).
This required providing the external-facing IP addresses so that Gett could open up their firewall/port to connect (port 22 for sFTP). Also I had to give Gett's external IP addresses so our own networks team could open up our firewalls.
This involved generating a public/private SSH key pair.
I documented it in a Wiki page.
It worked.
CCH
I upgraded the CCH software. This involved an over-the-internet update. It worked.
Wolterskluwer.com
Had problems. Users Wireshark to investigate why one client machine was connecting to their server, and the other one wasn't. Turns out that the one that wasn't was trying to connect with an old version of TLS (TLS 1.0 I think). So I upgraded it to TLS 1.2 - and this fixed the problem.
Indeed the documentation did say TLS 1.2 was required.
Other
There are CTE and DEV systems for testing purposes. These are accessible only via Citrix, and have their own domain and accounts in parallel with Prod. They are on a different network so there is no interaction between them and Prod.
Matters have different levels of confidentiality; Normal matters are "Restricted". For more sensitive there are "Highly Restricted" where you have to be on the ACL - Access Control List to be able to view it. And "Sensitive" which is more restricted still, where default access to admin groups is also removed.
These higher levels are there to prevent access to sensitive data such as takeover bids of public companies.
The "Matter Security Page" web page can be used to find what is the security level of a matter.
The "Matter Timeline" web page shows the progress of a matter through the various systems.
Other systems are:
iManage
BizTalk jobs do some of the processing, including sending files to remote locations.
These could not be easily viewed or edited because they are compiled code. Need to use Visual Studio to do so.
Daily jobs and checks. e.g. Reconciliation Reports. Me: Though I didn't really get involved in these much.
Wallbuilder
Keeps walls between lawyers working on potentially opposing parties in a legal case.
Aternity
User desktop behaviour monitoring and logging.
Lumen - an external support company who managed the servers on a hardware basis.
Integration Builder
Used to manage Integration Builder packages that transferred some of the data between systems. Me: A bit like Informatica Powercentre.
HR database for data about employees both past and present.