Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Additional Functionalities
==========================
## Visualise Relationships
[](# "Print this article")
Parent-child relationships between *Objects* can be visualised as trees
or tables in the ELN.
To see the genealogical tree, select the **Hierarchy Graph** option from
the **More…**dropdown in an entity form*.*

Large trees can be pruned, by selecting how many levels of parents
and/or children and which types to show.

To view the genealogy of an *Object* in a tabular format, select the
**Hierarchy Table** option from the **More…** dropdown.
Updated on March 4, 2022
## Tables
[](# "Print this article")
All tables in the ELN have a similar format and functionalities. The
tables have been redesigned for the 20.10.3 release of openBIS.
Here we give an overview of the main functionalities of the tables.
Two filter options are available form the **Filters** button: **Filter
Per Column** and **Global Filter**. The first allows to filter on
individual columns, or multiple columns, whereas the second filters
terms across the entire table using the **AND** or **OR** operator.
>
>

>

>
>
>
It is possible to sort individual columns or also multiple columns. For
multi-column sorting, you should click on the column header and press
the **Cmd** keyboard key. The order of sorting is shown by a number in
each column, as shown below.

>
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
Tables can be exported in different ways, using the export button shown
below.
>

>
>
> 1. 1. **Import Compatible**:
> 1. **Yes**: in this case some columns which are incompatible
> with imports (i.e. registration date, registrator,
> modification date, modifier) are not exported even if
> selected; some columns that are required by openBIS for
> imports are added to the exported file even if not
> selected (i.e. code, identifier, $ column). Moreover text
> fields are exported in HTML, to keep the formatting upon
> import.
> 2. **No**: in this case all columns or selected columns are
> exported.
>
>
>

>
>
>
>
>
> 2\. **Columns**:
>
> 1. 1. 1. **All (default order)**. All columns are exported, in
> accordance with the selection explained above for import
> compatibility.
> 2. **Selected (shown order)**. Selected columns are exported,
> in accordance with the selection explained above for
> import compatibility.
>

>
>
>
> 3. **Rows**:
>
> 1. 1. 1. 1. **All Pages**. All pages of the table are exported.
> 2. **Current Page**. Only the currently visible page of
> the table is exported.
> 3. **Selected Rows**. Only selected rows in the table are
> exported.
>

>
> 4\. **Value**:
>
> 1. 1. 1. **Plain Text**. Text fields are exported in plain text,
> without any formatting. This option is not available if
> the export is import-compatible.
> 2. **Rich Text**. Text fields are exported in HTML format.
>

>
>
>
> Tables are exported to **XLS** format. Exported tables can be used for
> updates via the **XLS Batch Update Objects**.
>
>
>
>
>
>
Users can select which properties to display in the table clicking on
the **Columns** button. It is also possible to show all properties or
hide all properties. The position of the columns can also be changed by
placing the cursor next to the = sign in the list and moving the fields.
This information is stored in the database for each user.

If a table contains *Objects* which have a spreadsheet field which is
filled in, a spreadsheet icon is displayed in the table. Upon clicking
on the icon, the content of the spreadsheet can be expanded.
>
>

>

>
>
If a table contains Objects which have long text fields, only the
beginning of the text is shown and can be expanded. If the text contains
a picture or a table, an icon is shown in the table and the content of
the text becomes visible by clicking on the icon.
>
>

>
>
### **Selection of entries in table**
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
Single entries in a table can be selected using the checkbox in the row.
By clicking the checkbox in the table header, all entries of the table
are selected. After selection of entries, some actions become available:
> - **Delete**: allows to move the selected entries to the trashcan.
> - **Move**: allows to move the selected entries to a different
> *Collection/Experiment.*
> - **Generate barcodes**: allows to generate custom barcodes for the
> selected entries.
> - **Update custom barcodes**: allows to update existing custom
> barcodes of the selected entries.
> - **Clear selection**: allows to clear the selection made.

In *Object* tables inside *Experiments/Collections* there is an
**Operations** column, which allow users to perform certain tasks on an
*Object*:
> 1. Upload a file to the *Object*
> 2. Move the *Object* to another Experiment/Collection.
> 3. Update Barcode.
> 4. Open the hierarchy graph. This is the graph showing parent/child
> connections of the *Object*.
> 5. Open the hierarchy table. This is the table showing parent/child
> connections of the *Object*.

Updated on April 26, 2023
## Browse Entries by Type
[](# "Print this article")
The **Object Browser** under the **Utilities** main menu allows to see
all entries of the same type and all *Experimental Steps*, which may be
contained in different *Experiments/Collections* and *Projects*.

This is useful when there are entries of a certain type that belong to
different *Collections* (e.g. protocols of the same type stored in two
different protocol collections), or to have an overview of all
*Experimental Steps*, independently of the *Experiment* they belong to.

From the **Object Browser** page, it is also possible to **Batch
register** or **Batch update** *Objects* using an XLS or TSV template.

Updated on April 25, 2023
## Trashcan
[](# "Print this article")
When *Experiments*, *Objects* and *Datasets* are deleted, they are moved
to the openBIS **trashcan**, under the **Utilities** main menu. Items
can be removed from the trashcan only by someone with *Space admin* or
*Instance admin* role. Deletion from the trashcan is **IRREVERSIBLE**.
Note: *Spaces* and *Projects* are directly permanently deleted, they are
not moved to the trashcan first.
To empty the whole trashcan, click the blue **Empty Trash **button above
the table.
To delete permanently single entries choose one of two options from the
Operations dropdown:
- **delete permanently**: deletes permanently only the selected entry.
- **delete permanently (including dependent deletions)**: if the
selected entry had children which are also in the trashcan, this
option allows to permanently delete both the entry and its children.
If one entity was unintentionally deleted, the operation can be reverted
at this stage by choosing the** Revert Deletions** option from
the **Operations** drop down in the table.

Updated on October 9, 2022
## Vocabulary Browser
[](# "Print this article")
The **Vocabulary browser** is accessible from the **Utilities** main
menu. This shows all controlled vocabularies registered in openBIS and
the terms they contain. Vocabularies are predefined lists of values to
choose from in given fields. Vocabularies can be created/modified by an
openBIS *Instance admin* (see [New Entity Type
Registration](https://openbis.ch/index.php/docs/admin-documentation-openbis-19-06-4/new-entity-type-registration/)).
This information is needed for filling the forms for **Batch
Upload **or**Batch Update** of *Objects* via TSV file. If an *Object*
has a property of type *Controlled Vocabulary*, the codes of the
vocabulary have to be entered in the .tsv template file. This is not the
case for XLS Batch registration or update, where labels can be used.

Updated on April 25, 2023
## Freeze Entities
[](# "Print this article")
Each level of the openBIS hierarchy (Space, Project,
Experiment/Collection, Object, Dataset) can be frozen, so it can be no
longer edited and/or deleted.
At every level, everything contained underneath is selected by default
to be frozen. E.g. if I choose to freeze a Space, everything contained
in the Space is automatically selected to be frozen. Single entities can
be manually unselected.
A Space admin role is necessary to freeze entities in a given Space.
**IMPORTANT: the freezing is IRREVERSIBLE!**
This operation cannot be undone from any UI, not even by an *Instance
admin.* Please freeze entities only when you are absolutely sure that
they should not be further modified!
### **How to freeze an entity**
At each level of the openBIS hierarchy (*Space, Project,
Experiment/Collection, Object, Dataset*) the **Freeze Entity** option is
available under the **More..** dropdown menu. See the example for a
*Space* below.

If you select this, a list of entities contained or connected to the one
selected will be presented to you, as shown below. By default everything
is selected, so you need to unselect entries that you do not want to
freeze.

To freeze one or several entities, you need to provide your login
password and save.
**Rules for freezing**
1. **Freeze Space only**
[TABLE]
1. **Freeze Project only**
[TABLE]
**3. Freeze Experiment/Collection only**
[TABLE]
**4. Freeze Object only**
[TABLE]
**5. Freeze Dataset only **
[TABLE]
Updated on April 25, 2023
## Navigation menu
[](# "Print this article")
openBIS 20.10.6 features a new navigation menu.

This has the following functionalities:
**1.Filter**. You can filter the menu by names or codes.

**2. Root nodes**. If you do not want to navigate the full menu, but
only a section of it, you can set the section you want to navigate as
root node, by clicking the icon shown in the picture below.

This now becomes the root node, as shown below. To restore the full menu
view, you can click on the root node icon shown below.

**3. Sorting**. The default sorting of the menu is in alphabetical. It
is now possible to sort separately individual sections of the menu
(*ELN, Inventory, Stock*) and individual nodes inside those sections. It
is possible to do a custom sorting by moving around (drag&drop) entities
in the menu. Please note that this is only possible inside a given
level, i.e. you can re-organise *Objects* inside a
*Collection/Experiment*; *Collections/Experiments* inside a *Project*;
*Projects* inside a *Space*. However, you cannot move entities from one
level to another, i.e. you cannot move an *Object* to a different
*Collection/Experiment*; a *Collection/Experimen*t to a different
*Project*; a *Project* to a different *Space*. This can only be done
from the **Move** option under the **More..** dropdown menu in the
forms.


**4. Collapse/Expand.** The full menu or individual nodes can be
expanded or collapsed, with the button shown below.

**5. Scroll to selected node**. In some cases, the view in the main ELN
page does not correspond to an entry selected in the menu. You can
scroll to the selected node in the menu, using the button shown below.

The state of the menu is saved. Every time you change something in the
menu, this change will be saved and when you login next time you will
see the menu in the state you last saved it.
Updated on April 26, 2023
## Custom Imports
[](# "Print this article")
From openBIS version 20.10.4, Custom Imports, previously available only
in the core UI, are available in the ELN UI.
Custom imports allow users to import metadata in a custom way, by using
a dropbox script in the background. You can use this if you want to
parse a file in a given format and import the information from this file
as metadata in openBIS.
Custom imports are not available by default, but need to be enabled on
the server side by a *system admin*, and a dropbox script needs to be
associated with an import (see [Custom
Imports](https://unlimited.ethz.ch/display/openBISDoc2010/Custom+Import)).
If one or more custom imports are configured in openBIS, the **Custom
Import** option is available under the **Utilities** in the **main
menu**.
The available custom imports can be selected from the **Custom Import
Service** drop down menu in the Custom Import page (see below)

If the available custom import provides a template that can be used as
input for the import, the template will be available to download from
the Custom Import page.

If the custom import is not configured to provide a template, no
download link is shown in the Custom Import page.

Updated on April 26, 2023
## Entity history
[](# "Print this article")
Whenever an entity of type *Collection/Experiment*, *Object* or
*Dataset* is modified in openBIS, the changes are stored in the
database. The stored changes are modifications to property fields,
addition and deletion of parents/children for *Objects* and *Datasets*,
changes of *Space/Project/Experiment/Object* ownership if an entity is
moved.
The **History** of changes of each entity is now available in the ELN
UI. In versions prior to openBIS 20.10.3 this was only available in the
core UI.
### History table for Collections
In a *Collection* page, the **History** can be accessed from the
**More..** dropdown list.

The **History** table shows the version number of the changes, the
author of the changes, the changes made (with the values before- in red,
and after the change – in green), and the timestamp, i.e. the time when
the changes were made.
For a *Collection*, the **PermID** (Permanent Identifier) of the
*Project* it belongs to is shown. If a *Collection* is moved from one
*Project* to another, the PermID of the old and new *Projects* are shown
in the history table.

The **show** option in **Full Document** shows the full metadata of the
entry (not only the changed fields) when changes were applied. This is
displayed in JSON format.

### History table for Objects
For every *Object*, the history of changes can be accessed from the
**More..** dropdown on the *Object* page.

For an *Object*, the **PermID** (Permanent Identifier) of the
*Collection* it belongs to is shown. If an *Object* is moved from one
*Collection* to another, the PermID of the old and new *Collections* are
shown in the history table.
### History table for Datasets
For every dataset, the history of changes can be accessed from the
**More..** dropdown on the *Dataset* page.

For a *Dataset*, the **PermID** (Permanent Identifier) of the
*Object*/*Collection* it belongs to is shown. If a* Dataset* is moved
from one *Object*/*Collection* to another, the PermID of the old and new
*Objects*/*Collections* are shown in the history table.
Updated on November 10, 2022
## Spreadsheet
The spreadsheet component needs to be enabled by a group admin or lab manager who can edit the ELN Settings, as described here: [Enable Rich Text Editor or Spreadsheet Widgets](../general-admin-users/admins-documentation/new-entity-type-registration.md)

The spreadsheet supports some basic Excel functionalities, such as mathematical formulas (e.g. =SUM(A1+A2)).
It is possible to import an openBIS Object into the spreadsheet, with the **import** button, on the spreadsheet itself:

Please note that if the Object is updated in openBIS, it will NOT be automatically updated in the spreadsheet.
Updated on March 4, 2022