Skip to content

DocMan and Media LibraryΒΆ

This section allows you to specify which entities support document management and media library capabilities

There are two sections to define entities that support docman and medialibrary. The documents and media items are synchronized to the syncschedule that is defined. For more information on how to define a sync schedule, please refer to the Sync Policies section.

The available keywords under entity are as follows.

prefetch Can be set to true or false. If set to true, the documents/media items will be downloaded in the background without any user intervention. Otherwise they are downloaded on demand when the user chooses to.

readonly Can be set to true or false. Documents and media items cannot be added/revised from the mobile app client if this is set to true.

private Can be set to true or false. This applies only to Media Library. If set to true, the media items attached to that entity from mobile app will be marked as private and they cannot be attached to any other object.

Example code:

docman {
   syncschedule = daily at 01:00;

   entity FndStream {
      prefetch = true;
      readonly = true;
   }
}

medialibrary {
   syncschedule = daily at 01:00;

   entity FndStream {
      prefetch = true;
      readonly = true;
      private = true;
   }
}