userguide done

This commit is contained in:
Allan Bowe 2018-07-06 17:03:06 +02:00
parent fc06b14341
commit fdaf5dc4ff
3 changed files with 58 additions and 17 deletions

View File

@ -4,8 +4,43 @@
The Data Controller has 5 tabs, as follows:
* Viewer. This tab lets users view any table to which they have been granted access in metadata. They can also download the data as csv, excel, or as a SAS program (datalines).
* Editor. This tab enables users to add, modify or delete data. This can be done directly in the browser, or by uploading a CSV file. Values can also be copy-pasted from a spreadsheet. Once changes are ready, they can be submitted, with a corresponding reason.
* Submissions. This shows and editor the outstanding changes that have been submitted for approval (but have not yet been approved or rejected).
* Approvals. This shows an approver all the outstanding changes that are waiting to be approved.
* History. This shows an auditor, or other interested party, what changes have been submitted for each table over time.
* *Viewer*. This tab lets users view any table to which they have been granted access in metadata. They can also download the data as csv, excel, or as a SAS program (datalines).
* *Editor*. This tab enables users to add, modify or delete data. This can be done directly in the browser, or by uploading a CSV file. Values can also be copy-pasted from a spreadsheet. Once changes are ready, they can be submitted, with a corresponding reason.
* *Submissions*. This shows and editor the outstanding changes that have been submitted for approval (but have not yet been approved or rejected).
* *Approvals*. This shows an approver all the outstanding changes that are waiting to be approved.
* *History*. This shows an auditor, or other interested party, what changes have been submitted for each table over time.
## Viewer
The Viewer screen lets any user with a SAS profile view tables to which they have already been granted access in metadata. Simply Select libary / table and the View button. The first 5,000 rows of the table in question are displayed.
It is also possible to build complex filters against data before viewing, via the Filter button. The filter string is converted into an ID, as can be seen in the URL. Simply share this link with any other SAS user to share that particular view.
The Viewer also has a Download option. This lets you Download your view of the data in CSV, Excel, and SAS format. The SAS format option gives you a SAS program with the relevant DATALINES so that you can easily recreate your data in another instance of SAS.
## Editor
The Editor screen lets users who have been pre-authorised (via the `DATACTRL.MPE_SECURITY` table) to edit a particular table. A user selects a particular library, and table and then has 3 options:
1 - *Filter*. The user can filter before proceeding to perform edits.
2 - *Upload*. The user can upload a CSV file directly, instead of using the interface. The CSV must have the same structure as the target. Use the 'download csv' option in Viewer to obtain a template of this CSV.
3 - *Edit*. The main interface, explained below.
In the main interface, data is displayed in tabular format. The first column is always "Delete?". This allows you to mark rows for deletion. Note that removing a row from display does not mark it for deletion! It simply means that this row is not part of the changeset being submitted.
The next set of columns are the Primary Key, and are shaded grey. If the table has a surrogate / retained key, then it is the Business Key that is shown here (the RK field is calculated / updated at the backend). For SCD2 type tables, the 'validity' fields are not shown. It is assumed that the user is always working with the current version of the data, and the view is filtered as such.
After this, remaining columns are shown. Dates / datetime fields have appropriate datepickers. Other fields may also have dropdowns to ensure entry of standard values, these can be configured in the `DATACTRL.MPE_SELECTBOX` table.
New rows can be added using the right click context menu, or the 'Add Row' button. The data can also be sorted by clicking on the column headers.
When ready to submit, hit the SUBMIT button and enter a reason for the change. The owners of the data are now alerted (so long as their email addresses are in metadata) with a link to the approve screen.
If you are also an approver you can approve this change yourself (and you have a button now available so you can approve immediately). See Approve section.
## Submitted
This page shows a list of the changes you have submitted (that are not yet approved).
## Approvals
This shows the list of changes that have been submitted to you (or your group) for approval.
## History
View the list of changes to each table, who made the change, when, etc.

View File

@ -1,21 +1,25 @@
# Data Controller Documentation
## Overview
The Data Controller for SAS® enables users to self serve their data changes, and for data owners to retain control over those updates by reviewing and approving each update.
<iframe src="https://player.vimeo.com/video/277472582" width="640" height="360" frameborder="0" allowfullscreen></iframe>
For full documentation visit [mkdocs.org](http://mkdocs.org).
## Commands
## Documents
* `mkdocs new [dir-name]` - Create a new project.
* `mkdocs serve` - Start the live-reloading docs server.
* `mkdocs build` - Build the documentation site.
* `mkdocs help` - Print this help message.
The following documents are available on this site:
## Project layout
* [Overview](dc-overview.md)
* [User Guide](dc-userguide.md)
* [Config - Adding Users](dcc-users.md)
* [Installation]()
mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.
## Online resources
The following sites contain additional information on the Data Controller for SAS®:
* DC Overview [Presentation](https://slides.com/allanbowe/datacontroller)
* Data Controller [LinkedIn](https://www.linkedin.com/company/datacontroller/) page

View File

@ -3,8 +3,10 @@ pages:
- Home: index.md
- Using Data Controller:
- DC Overview: dc-overview.md
- DC User Guide : dc-userguide.md
#- Installing Data Controller
- DC User Guide: dc-userguide.md
- Configuring Data Controller
- Adding Users: dcc-users.md
- Adding Tables
markdown_extensions:
- admonition