<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wikitest.augmensys.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=FMW</id>
		<title>UBIK Wiki Test / Augmensys - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wikitest.augmensys.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=FMW"/>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Special:Contributions/FMW"/>
		<updated>2026-04-29T17:27:41Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.2</generator>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=BatchWriteOrchestrator&amp;diff=29129</id>
		<title>BatchWriteOrchestrator</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=BatchWriteOrchestrator&amp;diff=29129"/>
				<updated>2025-10-30T06:57:57Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;BatchWriteOrchestrator is an orchestrator which can be configured to be executed on the UBIK Enterprise Service e.g. using PluginExecutionConfigPath.&lt;br /&gt;
for UBIK Studio Version 4.7 and higher, it has to posible calls &amp;quot;UBIK.CUI.Orchestration.BatchWriteOrchestrator&amp;quot; for a Single InterfaceAdminObject and &amp;quot;UBIK.CUI.Orchestration.MutliBatchWriteOrchestrator&amp;quot; for a tree of InterfaceAdminObjects&lt;br /&gt;
&lt;br /&gt;
Offten Named as &amp;quot;CUIExportOrchestrator.json&amp;quot; and mentioned as &amp;quot;PluginExecutionConfigPath&amp;quot; in the &amp;quot;UBIK.EnterpriseService.exe.config&amp;quot; file  &lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;RepeateEveryMinutes&amp;quot;: 10,&lt;br /&gt;
	&amp;quot;SqlConnectionDefinition&amp;quot;: &lt;br /&gt;
	{&lt;br /&gt;
	 &amp;quot;SSPI&amp;quot;: false,&lt;br /&gt;
	 &amp;quot;SQLUser&amp;quot;: &amp;quot;....&amp;quot;,&lt;br /&gt;
	 &amp;quot;SQLPassword&amp;quot;: &amp;quot;....&amp;quot;,&lt;br /&gt;
	 &amp;quot;SQLServer&amp;quot;: &amp;quot;....,&lt;br /&gt;
	 &amp;quot;SQLInitialCatalog&amp;quot;: &amp;quot;....&amp;quot;&lt;br /&gt;
	},&lt;br /&gt;
	&amp;quot;Tasks&amp;quot;:&lt;br /&gt;
	[&lt;br /&gt;
		{&lt;br /&gt;
		   &amp;quot;ClassFullname&amp;quot;: &amp;quot;UBIK.CUI.Orchestration.BatchWriteOrchestrator&amp;quot;,&lt;br /&gt;
		   &amp;quot;MethodName&amp;quot;: &amp;quot;Apply&amp;quot;,&lt;br /&gt;
		   &amp;quot;MethodParameterPathFullName&amp;quot;: &amp;quot;my_params.json&amp;quot;,	&lt;br /&gt;
		}&lt;br /&gt;
	]   &lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;RepeateEveryMinutes&amp;quot;: 10,&lt;br /&gt;
	&amp;quot;SqlConnectionDefinition&amp;quot;: &lt;br /&gt;
	{&lt;br /&gt;
	 &amp;quot;SSPI&amp;quot;: false,&lt;br /&gt;
	 &amp;quot;SQLUser&amp;quot;: &amp;quot;....&amp;quot;,&lt;br /&gt;
	 &amp;quot;SQLPassword&amp;quot;: &amp;quot;....&amp;quot;,&lt;br /&gt;
	 &amp;quot;SQLServer&amp;quot;: &amp;quot;....,&lt;br /&gt;
	 &amp;quot;SQLInitialCatalog&amp;quot;: &amp;quot;....&amp;quot;&lt;br /&gt;
	},&lt;br /&gt;
	&amp;quot;Tasks&amp;quot;:&lt;br /&gt;
	[&lt;br /&gt;
		{&lt;br /&gt;
		   &amp;quot;ClassFullname&amp;quot;: &amp;quot;UBIK.CUI.Orchestration.MutliBatchWriteOrchestrator&amp;quot;,&lt;br /&gt;
		   &amp;quot;MethodName&amp;quot;: &amp;quot;Apply&amp;quot;,&lt;br /&gt;
		   &amp;quot;MethodParameterPathFullName&amp;quot;: &amp;quot;my_params.json&amp;quot;,	&lt;br /&gt;
		}&lt;br /&gt;
	]   &lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You have to configure parameters via the method parameter file:&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
    public class ServiceParameter&lt;br /&gt;
    {&lt;br /&gt;
        public Guid? RegistrationInterfaceAdmin{ get; set; }&lt;br /&gt;
&lt;br /&gt;
        public Guid[]? Proxies{ get; } &lt;br /&gt;
        &lt;br /&gt;
        public Integer? max_proxies{ get; } &lt;br /&gt;
&lt;br /&gt;
        public Guid? RestAPIInterfaceAdmin{ get; set; }&lt;br /&gt;
    }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
the file &amp;quot;my_params.json&amp;quot; used as &amp;quot;MethodParameterPathFullName&amp;quot; will be looking like this example&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;RegistrationInterfaceAdmin&amp;quot;: null,&lt;br /&gt;
	&amp;quot;Proxies&amp;quot;: null,&lt;br /&gt;
        &amp;quot;max_proxies&amp;quot;: 500,&lt;br /&gt;
	&amp;quot;RestAPIInterfaceAdmin&amp;quot;: &amp;quot;e09bfeca-18e1-45e5-a605-038912882c2d&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; width: 100%&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:25%&amp;quot; |Property&lt;br /&gt;
!! style=&amp;quot;width:75%&amp;quot; |Description&lt;br /&gt;
|-&lt;br /&gt;
| RegistrationInterfaceAdmin&lt;br /&gt;
| Interface Admin witch was uesd to Import from xml file&lt;br /&gt;
|-&lt;br /&gt;
| Proxies &lt;br /&gt;
| [&amp;quot;GUID&amp;quot;,&amp;quot;GUID&amp;quot;,&amp;quot;GUID&amp;quot;,&amp;quot;GUID&amp;quot;]    Array of GUID for Proxies that should be exportet &lt;br /&gt;
|-&lt;br /&gt;
| max_proxies&lt;br /&gt;
| Integer    count of Proxies that should be prozessed in one bulk &lt;br /&gt;
|-&lt;br /&gt;
| RestAPIInterfaceAdmin&lt;br /&gt;
| GUID of Interface Admin Object that is relatet to the Proxies or the hirarchical owner of many Admin Objects for MultiBatch&lt;br /&gt;
|-&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=BatchWriteOrchestrator&amp;diff=29128</id>
		<title>BatchWriteOrchestrator</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=BatchWriteOrchestrator&amp;diff=29128"/>
				<updated>2025-10-30T06:53:14Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;BatchWriteOrchestrator is an orchestrator which can be configured to be executed on the UBIK Enterprise Service e.g. using PluginExecutionConfigPath.&lt;br /&gt;
for UBIK Studio Version 4.7 and higher, it has to posible calls &amp;quot;UBIK.CUI.Orchestration.BatchWriteOrchestrator&amp;quot; for a Single InterfaceAdminObject and &amp;quot;UBIK.CUI.Orchestration.MutliBatchWriteOrchestrator&amp;quot; for a tree of InterfaceAdminObjects&lt;br /&gt;
&lt;br /&gt;
Offten Named as &amp;quot;CUIExportOrchestrator.json&amp;quot; and mentioned as &amp;quot;PluginExecutionConfigPath&amp;quot; in the &amp;quot;UBIK.EnterpriseService.exe.config&amp;quot; file  &lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;RepeateEveryMinutes&amp;quot;: 10,&lt;br /&gt;
	&amp;quot;SqlConnectionDefinition&amp;quot;: &lt;br /&gt;
	{&lt;br /&gt;
	 &amp;quot;SSPI&amp;quot;: false,&lt;br /&gt;
	 &amp;quot;SQLUser&amp;quot;: &amp;quot;....&amp;quot;,&lt;br /&gt;
	 &amp;quot;SQLPassword&amp;quot;: &amp;quot;....&amp;quot;,&lt;br /&gt;
	 &amp;quot;SQLServer&amp;quot;: &amp;quot;....,&lt;br /&gt;
	 &amp;quot;SQLInitialCatalog&amp;quot;: &amp;quot;....&amp;quot;&lt;br /&gt;
	},&lt;br /&gt;
	&amp;quot;Tasks&amp;quot;:&lt;br /&gt;
	[&lt;br /&gt;
		{&lt;br /&gt;
		   &amp;quot;ClassFullname&amp;quot;: &amp;quot;UBIK.CUI.Orchestration.BatchWriteOrchestrator&amp;quot;,&lt;br /&gt;
		   &amp;quot;MethodName&amp;quot;: &amp;quot;Apply&amp;quot;,&lt;br /&gt;
		   &amp;quot;MethodParameterPathFullName&amp;quot;: &amp;quot;my_params.json&amp;quot;,	&lt;br /&gt;
		}&lt;br /&gt;
	]   &lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;RepeateEveryMinutes&amp;quot;: 10,&lt;br /&gt;
	&amp;quot;SqlConnectionDefinition&amp;quot;: &lt;br /&gt;
	{&lt;br /&gt;
	 &amp;quot;SSPI&amp;quot;: false,&lt;br /&gt;
	 &amp;quot;SQLUser&amp;quot;: &amp;quot;....&amp;quot;,&lt;br /&gt;
	 &amp;quot;SQLPassword&amp;quot;: &amp;quot;....&amp;quot;,&lt;br /&gt;
	 &amp;quot;SQLServer&amp;quot;: &amp;quot;....,&lt;br /&gt;
	 &amp;quot;SQLInitialCatalog&amp;quot;: &amp;quot;....&amp;quot;&lt;br /&gt;
	},&lt;br /&gt;
	&amp;quot;Tasks&amp;quot;:&lt;br /&gt;
	[&lt;br /&gt;
		{&lt;br /&gt;
		   &amp;quot;ClassFullname&amp;quot;: &amp;quot;UBIK.CUI.Orchestration.MutliBatchWriteOrchestrator&amp;quot;,&lt;br /&gt;
		   &amp;quot;MethodName&amp;quot;: &amp;quot;Apply&amp;quot;,&lt;br /&gt;
		   &amp;quot;MethodParameterPathFullName&amp;quot;: &amp;quot;my_params.json&amp;quot;,	&lt;br /&gt;
		}&lt;br /&gt;
	]   &lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You have to configure parameters via the method parameter file:&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
    public class ServiceParameter&lt;br /&gt;
    {&lt;br /&gt;
        public Guid? RegistrationInterfaceAdmin{ get; set; }&lt;br /&gt;
&lt;br /&gt;
        public Guid[]? Proxies{ get; } &lt;br /&gt;
&lt;br /&gt;
        public Guid? RestAPIInterfaceAdmin{ get; set; }&lt;br /&gt;
    }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
the file &amp;quot;my_params.json&amp;quot; used as &amp;quot;MethodParameterPathFullName&amp;quot; will be looking like this example&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;RegistrationInterfaceAdmin&amp;quot;: null,&lt;br /&gt;
	&amp;quot;Proxies&amp;quot;: null,&lt;br /&gt;
        &amp;quot;max_proxies&amp;quot;: 500,&lt;br /&gt;
	&amp;quot;RestAPIInterfaceAdmin&amp;quot;: &amp;quot;e09bfeca-18e1-45e5-a605-038912882c2d&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; width: 100%&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:25%&amp;quot; |Property&lt;br /&gt;
!! style=&amp;quot;width:75%&amp;quot; |Description&lt;br /&gt;
|-&lt;br /&gt;
| RegistrationInterfaceAdmin&lt;br /&gt;
| Interface Admin witch was uesd to Import from xml file&lt;br /&gt;
|-&lt;br /&gt;
| Proxies &lt;br /&gt;
| [&amp;quot;GUID&amp;quot;,&amp;quot;GUID&amp;quot;,&amp;quot;GUID&amp;quot;,&amp;quot;GUID&amp;quot;]    Array of GUID for Proxies that should be exportet &lt;br /&gt;
|-&lt;br /&gt;
| max_proxies&lt;br /&gt;
| Integer    count of Proxies that should be prozessed in one bulk &lt;br /&gt;
|-&lt;br /&gt;
| RestAPIInterfaceAdmin&lt;br /&gt;
| GUID of Interface Admin Object that is relatet to the Proxies or the hirarchical owner of many Admin Objects for MultiBatch&lt;br /&gt;
|-&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=BatchWriteOrchestrator&amp;diff=29127</id>
		<title>BatchWriteOrchestrator</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=BatchWriteOrchestrator&amp;diff=29127"/>
				<updated>2025-10-30T06:52:47Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;BatchWriteOrchestrator is an orchestrator which can be configured to be executed on the UBIK Enterprise Service e.g. using PluginExecutionConfigPath.&lt;br /&gt;
for UBIK Studio Version 4.7 and higher, it has to posible calls &amp;quot;UBIK.CUI.Orchestration.BatchWriteOrchestrator&amp;quot; for a Single InterfaceAdminObject and &amp;quot;UBIK.CUI.Orchestration.MutliBatchWriteOrchestrator&amp;quot; for a tree of InterfaceAdminObjects&lt;br /&gt;
&lt;br /&gt;
Offten Named as &amp;quot;CUIExportOrchestrator.json&amp;quot; and mentioned as &amp;quot;PluginExecutionConfigPath&amp;quot; in the &amp;quot;UBIK.EnterpriseService.exe.config&amp;quot; file  &lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;RepeateEveryMinutes&amp;quot;: 10,&lt;br /&gt;
	&amp;quot;SqlConnectionDefinition&amp;quot;: &lt;br /&gt;
	{&lt;br /&gt;
	 &amp;quot;SSPI&amp;quot;: false,&lt;br /&gt;
	 &amp;quot;SQLUser&amp;quot;: &amp;quot;....&amp;quot;,&lt;br /&gt;
	 &amp;quot;SQLPassword&amp;quot;: &amp;quot;....&amp;quot;,&lt;br /&gt;
	 &amp;quot;SQLServer&amp;quot;: &amp;quot;....,&lt;br /&gt;
	 &amp;quot;SQLInitialCatalog&amp;quot;: &amp;quot;....&amp;quot;&lt;br /&gt;
	},&lt;br /&gt;
	&amp;quot;Tasks&amp;quot;:&lt;br /&gt;
	[&lt;br /&gt;
		{&lt;br /&gt;
		   &amp;quot;ClassFullname&amp;quot;: &amp;quot;UBIK.CUI.Orchestration.BatchWriteOrchestrator&amp;quot;,&lt;br /&gt;
		   &amp;quot;MethodName&amp;quot;: &amp;quot;Apply&amp;quot;,&lt;br /&gt;
		   &amp;quot;MethodParameterPathFullName&amp;quot;: &amp;quot;my_params.json&amp;quot;,	&lt;br /&gt;
		}&lt;br /&gt;
	]   &lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;RepeateEveryMinutes&amp;quot;: 10,&lt;br /&gt;
	&amp;quot;SqlConnectionDefinition&amp;quot;: &lt;br /&gt;
	{&lt;br /&gt;
	 &amp;quot;SSPI&amp;quot;: false,&lt;br /&gt;
	 &amp;quot;SQLUser&amp;quot;: &amp;quot;....&amp;quot;,&lt;br /&gt;
	 &amp;quot;SQLPassword&amp;quot;: &amp;quot;....&amp;quot;,&lt;br /&gt;
	 &amp;quot;SQLServer&amp;quot;: &amp;quot;....,&lt;br /&gt;
	 &amp;quot;SQLInitialCatalog&amp;quot;: &amp;quot;....&amp;quot;&lt;br /&gt;
	},&lt;br /&gt;
	&amp;quot;Tasks&amp;quot;:&lt;br /&gt;
	[&lt;br /&gt;
		{&lt;br /&gt;
		   &amp;quot;ClassFullname&amp;quot;: &amp;quot;UBIK.CUI.Orchestration.MutliBatchWriteOrchestrator&amp;quot;,&lt;br /&gt;
		   &amp;quot;MethodName&amp;quot;: &amp;quot;Apply&amp;quot;,&lt;br /&gt;
		   &amp;quot;MethodParameterPathFullName&amp;quot;: &amp;quot;my_params.json&amp;quot;,	&lt;br /&gt;
		}&lt;br /&gt;
	]   &lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You have to configure parameters via the method parameter file:&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
    public class ServiceParameter&lt;br /&gt;
    {&lt;br /&gt;
        public Guid? RegistrationInterfaceAdmin{ get; set; }&lt;br /&gt;
&lt;br /&gt;
        public Guid[]? Proxies{ get; } &lt;br /&gt;
&lt;br /&gt;
        public Guid? RestAPIInterfaceAdmin{ get; set; }&lt;br /&gt;
    }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
the file &amp;quot;my_params.json&amp;quot; used as &amp;quot;MethodParameterPathFullName&amp;quot; will be looking like this example&lt;br /&gt;
&amp;lt;source lang = &amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;RegistrationInterfaceAdmin&amp;quot;: null,&lt;br /&gt;
	&amp;quot;Proxies&amp;quot;: null,&lt;br /&gt;
        &amp;quot;max_proxies&amp;quot;: 500,&lt;br /&gt;
	&amp;quot;RestAPIInterfaceAdmin&amp;quot;: &amp;quot;e09bfeca-18e1-45e5-a605-038912882c2d&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; width: 100%&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:25%&amp;quot; |Property&lt;br /&gt;
!! style=&amp;quot;width:75%&amp;quot; |Description&lt;br /&gt;
|-&lt;br /&gt;
| RegistrationInterfaceAdmin&lt;br /&gt;
| Interface Admin witch was uesd to Import from xml file&lt;br /&gt;
|-&lt;br /&gt;
| Proxies &lt;br /&gt;
| [&amp;quot;GUID&amp;quot;,&amp;quot;GUID&amp;quot;,&amp;quot;GUID&amp;quot;,&amp;quot;GUID&amp;quot;]    Array of GUID for Proxies that should be exportet &lt;br /&gt;
|-&lt;br /&gt;
| max_proxies&lt;br /&gt;
| 500    count of Proxies that should be prozessed in one bulk &lt;br /&gt;
|-&lt;br /&gt;
| RestAPIInterfaceAdmin&lt;br /&gt;
| GUID of Interface Admin Object that is relatet to the Proxies or the hirarchical owner of many Admin Objects for MultiBatch&lt;br /&gt;
|-&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=HowTo:Set_Up_CUI_Rest_API&amp;diff=29120</id>
		<title>HowTo:Set Up CUI Rest API</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=HowTo:Set_Up_CUI_Rest_API&amp;diff=29120"/>
				<updated>2025-10-24T07:38:36Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
The CUI -&amp;gt; &amp;quot;{{Comos}} {{UBIK}} Interface&amp;quot; is a Standard Dataexchange function betwen the tow Systems {{Comos}} and {{UBIK}} it is a bidirektional Communikation baesd on Comos WEB Rest API and a UBIK CUI Plugin.&lt;br /&gt;
&lt;br /&gt;
For Comos make sure you have a working Installation of {{Comos}} and {{Comos Web}} with acces to its {{Comos}} Database, you also need the License called “COMOS_Mobile_Worker_Server”&lt;br /&gt;
&lt;br /&gt;
On UBIK side to set it up please start with the Installation of UBIK, UBIK Database and its Webservices and EnterpriseServer(s)&lt;br /&gt;
&lt;br /&gt;
* [[HowTo:Install_UBIK_Studio]]&lt;br /&gt;
* [[HowTo:Install_UBIK_Database]]&lt;br /&gt;
* [[HowTo:Install_UBIK_Web_Service]]&lt;br /&gt;
* [[Configure_Enterprise_Service_for_CUI]]&lt;br /&gt;
&lt;br /&gt;
After that you have to possible ways to go on, Create a {{UBIK}} MetaClass strukte manually or via Import from Comos.&lt;br /&gt;
&lt;br /&gt;
If you want to export from Comos the first step is to check, update or Create Templates, like in this description PDF:&lt;br /&gt;
&lt;br /&gt;
[[:File:Admin_Comos_UBIK_Interface_2025_10_EN.pdf]]&lt;br /&gt;
&lt;br /&gt;
After Template Structure in Comos includes all the MetaClasses and Properties that you need on UBIK side, export these Comos Template as Metainformation for UBIK:&lt;br /&gt;
&lt;br /&gt;
In Standard Comos iDB there is a new Module section M67 for Comos Mobile Worker (UBIK)&lt;br /&gt;
For a standard MRO Use case there are Templates Predefined, these Templates are connected to Comos CDevices that have the Functional Classification C270 (iDB) (for cDB there is a C2 Classification available).&lt;br /&gt;
Bevor, please make sure that the Project settings for CUI Interface are there and Active; you find them in Project settings an make sure that the Active checkbox on COMOS Mobile Worker Interface is checked.&lt;br /&gt;
&lt;br /&gt;
First make sure the Interface is &amp;quot;Active&amp;quot; in Project settings of SO1 (or your used Workinglayer)&lt;br /&gt;
&lt;br /&gt;
[[File:Project_activation.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Next is to oben the ComosBaseObject in SO1, it should be found in iDB Databases at &amp;quot;@30|M67|A50|A20|A10&amp;quot;, please make sure that the filepath for the xml is existing and accessable.&lt;br /&gt;
&lt;br /&gt;
[[File:Export_from_Comos.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To import in a UBIK Database you have to use {{UBIK}} Smart Studio  [[Smart_Studio]] &lt;br /&gt;
&lt;br /&gt;
* [[Smart_Modelling]]&lt;br /&gt;
&lt;br /&gt;
* [[Setting_Up_UBIK_for_CUI]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:Admin_Comos_UBIK_Interface_2025_10_EN.pdf&amp;diff=29119</id>
		<title>File:Admin Comos UBIK Interface 2025 10 EN.pdf</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:Admin_Comos_UBIK_Interface_2025_10_EN.pdf&amp;diff=29119"/>
				<updated>2025-10-24T07:38:24Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Configer_Comos_for_CUI&amp;diff=29097</id>
		<title>Configer Comos for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Configer_Comos_for_CUI&amp;diff=29097"/>
				<updated>2025-10-20T11:58:26Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Created page with &amp;quot;To run or extend the Comos – {{UBIK}} – Interface =&amp;gt; CUI you have to do some settings on Comos side or at least get some Data for Configuration from Comos. Because {{Comos...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To run or extend the Comos – {{UBIK}} – Interface =&amp;gt; CUI you have to do some settings on Comos side or at least get some Data for Configuration from Comos.&lt;br /&gt;
Because {{Comos}} is not a Product from Augmensys, please request all Comos changes or adaptions at your local Simens or Siemens Parter.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Idea and Concept =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
The Interfaceing of Data is depending on 3 Parts&lt;br /&gt;
&lt;br /&gt;
* the possible representation of Data from Comos&lt;br /&gt;
* the transfer media, like *.xml file or REST API Interface&lt;br /&gt;
* the processing of the given Information in {{UBIK}}&lt;br /&gt;
&lt;br /&gt;
To hand over the primary needed Information from Comos to {{UBIK}} there are only *.xml Files to use, cause the Comos side is writing a the Data to a fixed *.xml shema witch {{UBIK}} is able to read in.&lt;br /&gt;
This is called Metadata Transfer, and hands over Data about Cdevices, Attributes, StandardTables, PhysicalUnits, and DocumentTypes form Comos to a .xml file.&lt;br /&gt;
When {{UBIK}} Smar Studio is Importing this, it will generate ComosMetaProxy's with Traget MetaClasse's, ComosMetaProxyProperty's with Target MetaProperty's, Selective Lists and Items, SI Units and UnitItems, and some ComosDocumentTypeProxy's&lt;br /&gt;
For detailed Informations about the {{UBIK}} Classes please see&lt;br /&gt;
&lt;br /&gt;
* [[MetaProxy]]&lt;br /&gt;
* [[MetaClass]]&lt;br /&gt;
* [[SELECTIVELIST]]&lt;br /&gt;
* [[SELECTIVEITEM]]&lt;br /&gt;
* [[UNIT]]&lt;br /&gt;
&lt;br /&gt;
= Comos =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&amp;lt;Give step-by-step instructions, use images, ...&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= UBIK =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&amp;lt;Give step-by-step instructions, use images, ...&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29096</id>
		<title>UNIT</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29096"/>
				<updated>2025-10-20T11:57:36Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MetaClassInfoBox&lt;br /&gt;
| title = Unit&lt;br /&gt;
| name = UNIT&lt;br /&gt;
| internalname = SystemObjects.UNIT&lt;br /&gt;
| namespace = System.Unit&lt;br /&gt;
| image = [[File:SY_UNIT.png|220px]]&lt;br /&gt;
| imagecaption = Unit&lt;br /&gt;
| purpose = Manage SI units&lt;br /&gt;
| version = 2+&lt;br /&gt;
| typestring = UBIK.Kernel.MetaClass&lt;br /&gt;
| runtimetype = UBIK.Kernel.Unit&lt;br /&gt;
}}&lt;br /&gt;
A unit is an object to define a SI unit.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[UNITITEM]]&lt;br /&gt;
&lt;br /&gt;
[[System_of_units]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Metaclasses|UNIT]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29095</id>
		<title>UNIT</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29095"/>
				<updated>2025-10-20T11:57:28Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MetaClassInfoBox&lt;br /&gt;
| title = Unit&lt;br /&gt;
| name = UNIT&lt;br /&gt;
| internalname = SystemObjects.UNIT&lt;br /&gt;
| namespace = System.Unit&lt;br /&gt;
| image = [[File:SY_UNIT.png|220px]]&lt;br /&gt;
| imagecaption = Unit&lt;br /&gt;
| purpose = Manage SI units&lt;br /&gt;
| version = 2+&lt;br /&gt;
| typestring = UBIK.Kernel.MetaClass&lt;br /&gt;
| runtimetype = UBIK.Kernel.Unit&lt;br /&gt;
}}&lt;br /&gt;
A unit is an object to define a SI unit.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[UNITITEM]]&lt;br /&gt;
[[System_of_units]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Metaclasses|UNIT]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29094</id>
		<title>UNIT</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29094"/>
				<updated>2025-10-20T11:56:41Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MetaClassInfoBox&lt;br /&gt;
| title = Unit&lt;br /&gt;
| name = UNIT&lt;br /&gt;
| internalname = SystemObjects.UNIT&lt;br /&gt;
| namespace = System.Unit&lt;br /&gt;
| image = [[File:SY_UNIT.png|220px]]&lt;br /&gt;
| imagecaption = Unit&lt;br /&gt;
| purpose = Manage SI units&lt;br /&gt;
| version = 2+&lt;br /&gt;
| typestring = UBIK.Kernel.MetaClass&lt;br /&gt;
| runtimetype = UBIK.Kernel.Unit&lt;br /&gt;
}}&lt;br /&gt;
A unit is an object to define a SI unit.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[System_of_units]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Metaclasses|UNIT]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29093</id>
		<title>UNIT</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29093"/>
				<updated>2025-10-20T11:56:32Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MetaClassInfoBox&lt;br /&gt;
| title = Unit&lt;br /&gt;
| name = UNIT&lt;br /&gt;
| internalname = SystemObjects.UNIT&lt;br /&gt;
| namespace = System.Unit&lt;br /&gt;
| image = [[File:SY_UNIT.png|220px]]&lt;br /&gt;
| imagecaption = Unit&lt;br /&gt;
| purpose = Manage SI units&lt;br /&gt;
| version = 2+&lt;br /&gt;
| typestring = UBIK.Kernel.MetaClass&lt;br /&gt;
| runtimetype = UBIK.Kernel.Unit&lt;br /&gt;
}}&lt;br /&gt;
A unit is an object to define a SI unit.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[System_of_units]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Metaclasses|UNIT]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29092</id>
		<title>UNIT</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29092"/>
				<updated>2025-10-20T11:56:23Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MetaClassInfoBox&lt;br /&gt;
| title = Unit&lt;br /&gt;
| name = UNIT&lt;br /&gt;
| internalname = SystemObjects.UNIT&lt;br /&gt;
| namespace = System.Unit&lt;br /&gt;
| image = [[File:SY_UNIT.png|220px]]&lt;br /&gt;
| imagecaption = Unit&lt;br /&gt;
| purpose = Manage SI units&lt;br /&gt;
| version = 2+&lt;br /&gt;
| typestring = UBIK.Kernel.MetaClass&lt;br /&gt;
| runtimetype = UBIK.Kernel.Unit&lt;br /&gt;
}}&lt;br /&gt;
A unit is an object to define a SI unit.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[System_of_units]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Metaclasses|UNIT]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29091</id>
		<title>UNIT</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29091"/>
				<updated>2025-10-20T11:56:15Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MetaClassInfoBox&lt;br /&gt;
| title = Unit&lt;br /&gt;
| name = UNIT&lt;br /&gt;
| internalname = SystemObjects.UNIT&lt;br /&gt;
| namespace = System.Unit&lt;br /&gt;
| image = [[File:SY_UNIT.png|220px]]&lt;br /&gt;
| imagecaption = Unit&lt;br /&gt;
| purpose = Manage SI units&lt;br /&gt;
| version = 2+&lt;br /&gt;
| typestring = UBIK.Kernel.MetaClass&lt;br /&gt;
| runtimetype = UBIK.Kernel.Unit&lt;br /&gt;
}}&lt;br /&gt;
A unit is an object to define a SI unit.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[System_of_units]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Metaclasses|UNIT]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29090</id>
		<title>UNIT</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=UNIT&amp;diff=29090"/>
				<updated>2025-10-20T11:56:01Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MetaClassInfoBox&lt;br /&gt;
| title = Unit&lt;br /&gt;
| name = UNIT&lt;br /&gt;
| internalname = SystemObjects.UNIT&lt;br /&gt;
| namespace = System.Unit&lt;br /&gt;
| image = [[File:SY_UNIT.png|220px]]&lt;br /&gt;
| imagecaption = Unit&lt;br /&gt;
| purpose = Manage SI units&lt;br /&gt;
| version = 2+&lt;br /&gt;
| typestring = UBIK.Kernel.MetaClass&lt;br /&gt;
| runtimetype = UBIK.Kernel.Unit&lt;br /&gt;
}}&lt;br /&gt;
A unit is an object to define a SI unit.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[System_of_units]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Metaclasses|UNIT]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=HowTo:Set_Up_CUI_Rest_API&amp;diff=29087</id>
		<title>HowTo:Set Up CUI Rest API</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=HowTo:Set_Up_CUI_Rest_API&amp;diff=29087"/>
				<updated>2025-10-16T12:58:34Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
The CUI -&amp;gt; &amp;quot;{{Comos}} {{UBIK}} Interface&amp;quot; is a Standard Dataexchange function betwen the tow Systems {{Comos}} and {{UBIK}} it is a bidirektional Communikation baesd on Comos WEB Rest API and a UBIK CUI Plugin.&lt;br /&gt;
&lt;br /&gt;
For Comos make sure you have a working Installation of {{Comos}} and {{Comos Web}} with acces to its {{Comos}} Database, you also need the License called “COMOS_Mobile_Worker_Server”&lt;br /&gt;
&lt;br /&gt;
On UBIK side to set it up please start with the Installation of UBIK, UBIK Database and its Webservices and EnterpriseServer(s)&lt;br /&gt;
&lt;br /&gt;
* [[HowTo:Install_UBIK_Studio]]&lt;br /&gt;
* [[HowTo:Install_UBIK_Database]]&lt;br /&gt;
* [[HowTo:Install_UBIK_Web_Service]]&lt;br /&gt;
* [[Configure_Enterprise_Service_for_CUI]]&lt;br /&gt;
&lt;br /&gt;
After that you have to possible ways to go on, Create a {{UBIK}} MetaClass strukte manually or via Import from Comos.&lt;br /&gt;
&lt;br /&gt;
If you want to export from Comos the first step is to check, update or Create Templates, like in this description PDF:&lt;br /&gt;
&lt;br /&gt;
[[:File:Admin_Comos_UBIK_Interface_2023_07_EN.pdf]]&lt;br /&gt;
&lt;br /&gt;
After Template Structure in Comos includes all the MetaClasses and Properties that you need on UBIK side, export these Comos Template as Metainformation for UBIK:&lt;br /&gt;
&lt;br /&gt;
In Standard Comos iDB there is a new Module section M67 for Comos Mobile Worker (UBIK)&lt;br /&gt;
For a standard MRO Use case there are Templates Predefined, these Templates are connected to Comos CDevices that have the Functional Classification C270 (iDB) (for cDB there is a C2 Classification available).&lt;br /&gt;
Bevor, please make sure that the Project settings for CUI Interface are there and Active; you find them in Project settings an make sure that the Active checkbox on COMOS Mobile Worker Interface is checked.&lt;br /&gt;
&lt;br /&gt;
First make sure the Interface is &amp;quot;Active&amp;quot; in Project settings of SO1 (or your used Workinglayer)&lt;br /&gt;
&lt;br /&gt;
[[File:Project_activation.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Next is to oben the ComosBaseObject in SO1, it should be found in iDB Databases at &amp;quot;@30|M67|A50|A20|A10&amp;quot;, please make sure that the filepath for the xml is existing and accessable.&lt;br /&gt;
&lt;br /&gt;
[[File:Export_from_Comos.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To import in a UBIK Database you have to use {{UBIK}} Smart Studio  [[Smart_Studio]] &lt;br /&gt;
&lt;br /&gt;
* [[Smart_Modelling]]&lt;br /&gt;
&lt;br /&gt;
* [[Setting_Up_UBIK_for_CUI]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29086</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29086"/>
				<updated>2025-10-16T12:55:13Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
* Comos Project &lt;br /&gt;
* Comos Login&lt;br /&gt;
* Interface Admin Comos&lt;br /&gt;
* Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
= Comos Project =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]][[File:ComosProject_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
The Database ID is also the same as in Comos, on the Project settings for Mobile Solutions, the Enterprise Server here is that one from {{UBIK}} like you set up the Notification Endpoint.&lt;br /&gt;
Project_ID, Working_Overlay_ID is again form Comos, Project_ID is Mandatory anyway, if you want to connect with an WorkingOverly from Comos this ID is also needet.&lt;br /&gt;
The Registration folder is only needet when you want to use XML Files for Objects that are not Classified in Comos. &lt;br /&gt;
&lt;br /&gt;
[[File:New_Project_MC.png|400px]]&lt;br /&gt;
[[File:New_comos_project.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Comos Login =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar to COMOS_PROJECT  go to MetaClass COMOS_LOGIN and derive a new Metaclass.&lt;br /&gt;
&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; SERVICE_LOGIN -&amp;gt; BASICAUTH_SERVICE_LOGIN -&amp;gt; COMOS_LOGIN&lt;br /&gt;
&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; COMOS_LOGIN&lt;br /&gt;
&lt;br /&gt;
[[File:ComosLogin_see_all.png|400px]][[File:ComosLogin_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
You have to Link a instance form COMOS_PROJECT or its children, so link here the Instance you created bevor in the new Created COMOS_PROJECT Childclass&lt;br /&gt;
with the checkbox you ask UBIK to Authenticate bevore sending data, could be that Systemsecurty is asking for this.&lt;br /&gt;
In Service URL you have to give the Comos WebstartPage url, and User and Password for Comos login (mostly Domainuser)&lt;br /&gt;
&lt;br /&gt;
[[File:New_login_MC.png|400px]]&lt;br /&gt;
[[File:New_Login.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Interface Admin Comos =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar like bevor go to MetaClass INTERFACE_ADMIN_COMOS and derive a new Metaclass.&lt;br /&gt;
&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; {}Comos.Interface.Administration -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
&lt;br /&gt;
[[File:IA_COMOS_see_all.png|400px]][[File:IA_COMOS_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, dont forget to link to the LoginObject please Save; &lt;br /&gt;
&lt;br /&gt;
[[File:IA_CMW_LINK.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To Configure the Proxys that should be Imported and Exported please open the New InterfaceAdmin in a RelationEditor. Than drag an drop all the relevant Proxy to the Interface admin Object.&lt;br /&gt;
&lt;br /&gt;
[[File:IA_RELATIONS.png|800px]]&lt;br /&gt;
&lt;br /&gt;
= Relation between Comos Project and Language =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Different to bevore RelationalClass SYSREL_PROJECT_LANGUAGE stays the SystemMetaClass.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; RELATIONDATA -&amp;gt; SYSREL_PROJECT_LANGUAGE&lt;br /&gt;
&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; SYSREL_PROJECT_LANGUAGE&lt;br /&gt;
&lt;br /&gt;
[[File:Lang_REL_see_all.png|400px]][[File:Lang_REL_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Please open the Class in a Bulk Editor;&lt;br /&gt;
&lt;br /&gt;
[[File:REL_OVERVIEW.png|1200px]]&lt;br /&gt;
&lt;br /&gt;
To Create a new Instance set a Comos_Project Instance to LEFTUID and a Language Object to the RIGHTUID. &lt;br /&gt;
&lt;br /&gt;
Add the Microsoft LCID number for your Language.&lt;br /&gt;
&lt;br /&gt;
And also the Comos settings witch Language is the current Project, and User Default.&lt;br /&gt;
&lt;br /&gt;
The Languages from UBIK u find in&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}System -&amp;gt; {}System.Main -&amp;gt; {}System.Main.Language -&amp;gt; LANGUAGE -&amp;gt; {}System &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Add_Languages_to_UBIK]]&lt;br /&gt;
&lt;br /&gt;
[https://cldr.unicode.org/ Unicode CLDR Project]&lt;br /&gt;
&lt;br /&gt;
[https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-lcid/70feba9f-294e-491e-b6eb-56532684c37f Microsoft LCID]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29085</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29085"/>
				<updated>2025-10-16T12:54:56Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
* Comos Project &lt;br /&gt;
* Comos Login&lt;br /&gt;
* Interface Admin Comos&lt;br /&gt;
* Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
= Comos Project =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]][[File:ComosProject_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
The Database ID is also the same as in Comos, on the Project settings for Mobile Solutions, the Enterprise Server here is that one from {{UBIK}} like you set up the Notification Endpoint.&lt;br /&gt;
Project_ID, Working_Overlay_ID is again form Comos, Project_ID is Mandatory anyway, if you want to connect with an WorkingOverly from Comos this ID is also needet.&lt;br /&gt;
The Registration folder is only needet when you want to use XML Files for Objects that are not Classified in Comos. &lt;br /&gt;
&lt;br /&gt;
[[File:New_Project_MC.png|400px]]&lt;br /&gt;
[[File:New_comos_project.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Comos Login =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar to COMOS_PROJECT  go to MetaClass COMOS_LOGIN and derive a new Metaclass.&lt;br /&gt;
&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; SERVICE_LOGIN -&amp;gt; BASICAUTH_SERVICE_LOGIN -&amp;gt; COMOS_LOGIN&lt;br /&gt;
&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; COMOS_LOGIN&lt;br /&gt;
&lt;br /&gt;
[[File:ComosLogin_see_all.png|400px]][[File:ComosLogin_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
You have to Link a instance form COMOS_PROJECT or its children, so link here the Instance you created bevor in the new Created COMOS_PROJECT Childclass&lt;br /&gt;
with the checkbox you ask UBIK to Authenticate bevore sending data, could be that Systemsecurty is asking for this.&lt;br /&gt;
In Service URL you have to give the Comos WebstartPage url, and User and Password for Comos login (mostly Domainuser)&lt;br /&gt;
&lt;br /&gt;
[[File:New_login_MC.png|400px]]&lt;br /&gt;
[[File:New_Login.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Interface Admin Comos =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar like bevor go to MetaClass INTERFACE_ADMIN_COMOS and derive a new Metaclass.&lt;br /&gt;
&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; {}Comos.Interface.Administration -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
&lt;br /&gt;
[[File:IA_COMOS_see_all.png|400px]][[File:IA_COMOS_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, dont forget to link to the LoginObject please Save; &lt;br /&gt;
&lt;br /&gt;
[[File:IA_CMW_LINK.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To Configure the Proxys that should be Imported and Exported please open the New InterfaceAdmin in a RelationEditor. Than drag an drop all the relevant Proxy to the Interface admin Object.&lt;br /&gt;
&lt;br /&gt;
[[File:IA_RELATIONS.png|800px]]&lt;br /&gt;
&lt;br /&gt;
= Relation between Comos Project and Language =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Different to bevore RelationalClass SYSREL_PROJECT_LANGUAGE stays the SystemMetaClass.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; RELATIONDATA -&amp;gt; SYSREL_PROJECT_LANGUAGE&lt;br /&gt;
&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; SYSREL_PROJECT_LANGUAGE&lt;br /&gt;
&lt;br /&gt;
[[File:Lang_REL_see_all.png|400px]][[File:Lang_REL_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Please open the Class in a Bulk Editor;&lt;br /&gt;
&lt;br /&gt;
[[File:REL_OVERVIEW.png|1200px]]&lt;br /&gt;
&lt;br /&gt;
To Create a new Instance set a Comos_Project Instance to LEFTUID and a Language Object to the RIGHTUID. &lt;br /&gt;
&lt;br /&gt;
Add the Microsoft LCID number for your Language.&lt;br /&gt;
&lt;br /&gt;
And also the Comos settings witch Language is the current Project, and User Default.&lt;br /&gt;
&lt;br /&gt;
The Languages from UBIK u find in&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}System -&amp;gt; {}System.Main -&amp;gt; {}System.Main.Language -&amp;gt; LANGUAGE -&amp;gt; {}System &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Add_Languages_to_UBIK]]&lt;br /&gt;
&lt;br /&gt;
[[https://cldr.unicode.org/ Unicode CLDR Project]]&lt;br /&gt;
&lt;br /&gt;
[https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-lcid/70feba9f-294e-491e-b6eb-56532684c37f Microsoft LCID]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=HowTo:Add_Languages_to_UBIK&amp;diff=29084</id>
		<title>HowTo:Add Languages to UBIK</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=HowTo:Add_Languages_to_UBIK&amp;diff=29084"/>
				<updated>2025-10-16T12:48:32Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A set of languages can easily be added to the {{UBIK}} database by using the [[Database Manager]].&lt;br /&gt;
&lt;br /&gt;
#In the menu select ''Database &amp;amp;rarr; Database Manager''&lt;br /&gt;
#Change to the tab ''Languages''.&amp;lt;br/&amp;gt;[[File:UI_HowTo_Add_Languages_01.png|220 px|border|alt=Add Languages|Add Languages]]&lt;br /&gt;
#You see a list of the configured database languages on this tab&lt;br /&gt;
#Select the amount of languages you want to add in the field ''New Languages''&lt;br /&gt;
#Press {{key press|Add}} to create the new set of languages and confirm with {{key press|OK}}.&amp;lt;br/&amp;gt;[[File:UI_HowTo_Add_Languages_02.png|220 px|border|alt=Confirm Add Languages|Confirm Add Languages]]&lt;br /&gt;
#The system will add the new languages to {{UBIK}} and execute all the necessary database updates. Once the creation is finished you will see additional entries at the bottom of the list.&lt;br /&gt;
#UBIK Languages are normaly using Language Codes according to ISO 639&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Database Manager]]&lt;br /&gt;
* [[Bulk Editor]]&lt;br /&gt;
* [[https://en.wikipedia.org/wiki/ISO_639 ISO 639]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How-To|Add Languages to UBIK]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29083</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29083"/>
				<updated>2025-10-16T12:42:38Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
* Comos Project &lt;br /&gt;
* Comos Login&lt;br /&gt;
* Interface Admin Comos&lt;br /&gt;
* Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
= Comos Project =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]][[File:ComosProject_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
The Database ID is also the same as in Comos, on the Project settings for Mobile Solutions, the Enterprise Server here is that one from {{UBIK}} like you set up the Notification Endpoint.&lt;br /&gt;
Project_ID, Working_Overlay_ID is again form Comos, Project_ID is Mandatory anyway, if you want to connect with an WorkingOverly from Comos this ID is also needet.&lt;br /&gt;
The Registration folder is only needet when you want to use XML Files for Objects that are not Classified in Comos. &lt;br /&gt;
&lt;br /&gt;
[[File:New_Project_MC.png|400px]]&lt;br /&gt;
[[File:New_comos_project.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Comos Login =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar to COMOS_PROJECT  go to MetaClass COMOS_LOGIN and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; SERVICE_LOGIN -&amp;gt; BASICAUTH_SERVICE_LOGIN -&amp;gt; COMOS_LOGIN&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; COMOS_LOGIN&lt;br /&gt;
&lt;br /&gt;
[[File:ComosLogin_see_all.png|400px]][[File:ComosLogin_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
You have to Link a instance form COMOS_PROJECT or its children, so link here the Instance you created bevor in the new Created COMOS_PROJECT Childclass&lt;br /&gt;
with the checkbox you ask UBIK to Authenticate bevore sending data, could be that Systemsecurty is asking for this.&lt;br /&gt;
In Service URL you have to give the Comos WebstartPage url, and User and Password for Comos login (mostly Domainuser)&lt;br /&gt;
&lt;br /&gt;
[[File:New_login_MC.png|400px]]&lt;br /&gt;
[[File:New_Login.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Interface Admin Comos =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar like bevor go to MetaClass INTERFACE_ADMIN_COMOS and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; {}Comos.Interface.Administration -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
&lt;br /&gt;
[[File:IA_COMOS_see_all.png|400px]][[File:IA_COMOS_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, dont forget to link to the LoginObject please Save; &lt;br /&gt;
&lt;br /&gt;
[[File:IA_CMW_LINK.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To Configure the Proxys that should be Imported and Exported please open the New InterfaceAdmin in a RelationEditor. Than drag an drop all the relevant Proxy to the Interface admin Object.&lt;br /&gt;
&lt;br /&gt;
[[File:IA_RELATIONS.png|800px]]&lt;br /&gt;
&lt;br /&gt;
= Relation between Comos Project and Language =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Different to bevore RelationalClass SYSREL_PROJECT_LANGUAGE stays the SystemMetaClass.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; RELATIONDATA -&amp;gt; SYSREL_PROJECT_LANGUAGE&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; SYSREL_PROJECT_LANGUAGE&lt;br /&gt;
&lt;br /&gt;
[[File:Lang_REL_see_all.png|400px]][[File:Lang_REL_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Please open the Class in a Bulk Editor;&lt;br /&gt;
&lt;br /&gt;
[[File:REL_OVERVIEW.png|1200px]]&lt;br /&gt;
&lt;br /&gt;
To Create a new Instance set a Comos_Project Instance to LEFTUID and a Language Object to the RIGHTUID. &lt;br /&gt;
Add the Microsoft LCID number for your Language.&lt;br /&gt;
And also the Comos settings witch Language is the current Project, and User Default.&lt;br /&gt;
&lt;br /&gt;
The Languages from UBIK u find in&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}System -&amp;gt; {}System.Main -&amp;gt; {}System.Main.Language -&amp;gt; LANGUAGE -&amp;gt; {}System &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Add_Languages_to_UBIK]]&lt;br /&gt;
[https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-lcid/70feba9f-294e-491e-b6eb-56532684c37f Microsoft LCID]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29082</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29082"/>
				<updated>2025-10-16T12:39:52Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
* Comos Project &lt;br /&gt;
* Comos Login&lt;br /&gt;
* Interface Admin Comos&lt;br /&gt;
* Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
= Comos Project =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]][[File:ComosProject_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
The Database ID is also the same as in Comos, on the Project settings for Mobile Solutions, the Enterprise Server here is that one from {{UBIK}} like you set up the Notification Endpoint.&lt;br /&gt;
Project_ID, Working_Overlay_ID is again form Comos, Project_ID is Mandatory anyway, if you want to connect with an WorkingOverly from Comos this ID is also needet.&lt;br /&gt;
The Registration folder is only needet when you want to use XML Files for Objects that are not Classified in Comos. &lt;br /&gt;
&lt;br /&gt;
[[File:New_Project_MC.png|400px]]&lt;br /&gt;
[[File:New_comos_project.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Comos Login =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar to COMOS_PROJECT  go to MetaClass COMOS_LOGIN and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; SERVICE_LOGIN -&amp;gt; BASICAUTH_SERVICE_LOGIN -&amp;gt; COMOS_LOGIN&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; COMOS_LOGIN&lt;br /&gt;
&lt;br /&gt;
[[File:ComosLogin_see_all.png|400px]][[File:ComosLogin_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
You have to Link a instance form COMOS_PROJECT or its children, so link here the Instance you created bevor in the new Created COMOS_PROJECT Childclass&lt;br /&gt;
with the checkbox you ask UBIK to Authenticate bevore sending data, could be that Systemsecurty is asking for this.&lt;br /&gt;
In Service URL you have to give the Comos WebstartPage url, and User and Password for Comos login (mostly Domainuser)&lt;br /&gt;
&lt;br /&gt;
[[File:New_login_MC.png|400px]]&lt;br /&gt;
[[File:New_Login.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Interface Admin Comos =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar like bevor go to MetaClass INTERFACE_ADMIN_COMOS and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; {}Comos.Interface.Administration -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
&lt;br /&gt;
[[File:IA_COMOS_see_all.png|400px]][[File:IA_COMOS_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, dont forget to link to the LoginObject please Save; &lt;br /&gt;
&lt;br /&gt;
[[File:IA_CMW_LINK.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To Configure the Proxys that should be Imported and Exported please open the New InterfaceAdmin in a RelationEditor. Than drag an drop all the relevant Proxy to the Interface admin Object.&lt;br /&gt;
&lt;br /&gt;
[[File:IA_RELATIONS.png|800px]]&lt;br /&gt;
&lt;br /&gt;
= Relation between Comos Project and Language =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Different to bevore RelationalClass SYSREL_PROJECT_LANGUAGE stays the SystemMetaClass.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; RELATIONDATA -&amp;gt; SYSREL_PROJECT_LANGUAGE&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; SYSREL_PROJECT_LANGUAGE&lt;br /&gt;
&lt;br /&gt;
[[File:Lang_REL_see_all.png|400px]][[File:Lang_REL_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Please open the Class in a Bulk Editor;&lt;br /&gt;
&lt;br /&gt;
[[File:REL_OVERVIEW.png|1200px]]&lt;br /&gt;
&lt;br /&gt;
To Create a new Instance set a Comos_Project Instance to LEFTUID and a Language Object to the RIGHTUID. &lt;br /&gt;
Add the Microsoft LCID number for your Language.&lt;br /&gt;
And also the Comos settings witch Language is the current Project, and User Default.&lt;br /&gt;
&lt;br /&gt;
The Languages from UBIK u find in&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}System -&amp;gt; {}System.Main -&amp;gt; {}System.Main.Language -&amp;gt; LANGUAGE -&amp;gt; {}System &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Add_Languages_to_UBIK]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29081</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29081"/>
				<updated>2025-10-16T12:38:54Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: /* Relation between Comos Project and Language */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
* Comos Project &lt;br /&gt;
* Comos Login&lt;br /&gt;
* Interface Admin Comos&lt;br /&gt;
* Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
= Comos Project =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]][[File:ComosProject_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
The Database ID is also the same as in Comos, on the Project settings for Mobile Solutions, the Enterprise Server here is that one from {{UBIK}} like you set up the Notification Endpoint.&lt;br /&gt;
Project_ID, Working_Overlay_ID is again form Comos, Project_ID is Mandatory anyway, if you want to connect with an WorkingOverly from Comos this ID is also needet.&lt;br /&gt;
The Registration folder is only needet when you want to use XML Files for Objects that are not Classified in Comos. &lt;br /&gt;
&lt;br /&gt;
[[File:New_Project_MC.png|400px]]&lt;br /&gt;
[[File:New_comos_project.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Comos Login =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar to COMOS_PROJECT  go to MetaClass COMOS_LOGIN and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; SERVICE_LOGIN -&amp;gt; BASICAUTH_SERVICE_LOGIN -&amp;gt; COMOS_LOGIN&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; COMOS_LOGIN&lt;br /&gt;
&lt;br /&gt;
[[File:ComosLogin_see_all.png|400px]][[File:ComosLogin_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
You have to Link a instance form COMOS_PROJECT or its children, so link here the Instance you created bevor in the new Created COMOS_PROJECT Childclass&lt;br /&gt;
with the checkbox you ask UBIK to Authenticate bevore sending data, could be that Systemsecurty is asking for this.&lt;br /&gt;
In Service URL you have to give the Comos WebstartPage url, and User and Password for Comos login (mostly Domainuser)&lt;br /&gt;
&lt;br /&gt;
[[File:New_login_MC.png|400px]]&lt;br /&gt;
[[File:New_Login.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Interface Admin Comos =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar like bevor go to MetaClass INTERFACE_ADMIN_COMOS and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; {}Comos.Interface.Administration -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
&lt;br /&gt;
[[File:IA_COMOS_see_all.png|400px]][[File:IA_COMOS_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, dont forget to link to the LoginObject please Save; &lt;br /&gt;
&lt;br /&gt;
[[File:IA_CMW_LINK.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To Configure the Proxys that should be Imported and Exported please open the New InterfaceAdmin in a RelationEditor. Than drag an drop all the relevant Proxy to the Interface admin Object.&lt;br /&gt;
&lt;br /&gt;
[[File:IA_RELATIONS.png|800px]]&lt;br /&gt;
&lt;br /&gt;
= Relation between Comos Project and Language =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Different to bevore RelationalClass SYSREL_PROJECT_LANGUAGE stays the SystemMetaClass.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; RELATIONDATA -&amp;gt; SYSREL_PROJECT_LANGUAGE&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; SYSREL_PROJECT_LANGUAGE&lt;br /&gt;
&lt;br /&gt;
[[File:Lang_REL_see_all.png|400px]][[File:Lang_REL_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Please open the Class in a Bulk Editor;&lt;br /&gt;
&lt;br /&gt;
[[File:REL_OVERVIEW.png|1200px]]&lt;br /&gt;
&lt;br /&gt;
To Create a new Instance set a Comos_Project Instance to LEFTUID and a Language Object to the RIGHTUID. &lt;br /&gt;
Add the Microsoft LCID number for your Language.&lt;br /&gt;
And also the Comos settings witch Language is the current Project, and User Default.&lt;br /&gt;
&lt;br /&gt;
The Languages from UBIK u find in&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}System -&amp;gt; {}System.Main -&amp;gt; {}System.Main.Language -&amp;gt; LANGUAGE -&amp;gt; {}System &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29080</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29080"/>
				<updated>2025-10-16T12:38:31Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
* Comos Project &lt;br /&gt;
* Comos Login&lt;br /&gt;
* Interface Admin Comos&lt;br /&gt;
* Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
= Comos Project =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]][[File:ComosProject_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
The Database ID is also the same as in Comos, on the Project settings for Mobile Solutions, the Enterprise Server here is that one from {{UBIK}} like you set up the Notification Endpoint.&lt;br /&gt;
Project_ID, Working_Overlay_ID is again form Comos, Project_ID is Mandatory anyway, if you want to connect with an WorkingOverly from Comos this ID is also needet.&lt;br /&gt;
The Registration folder is only needet when you want to use XML Files for Objects that are not Classified in Comos. &lt;br /&gt;
&lt;br /&gt;
[[File:New_Project_MC.png|400px]]&lt;br /&gt;
[[File:New_comos_project.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Comos Login =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar to COMOS_PROJECT  go to MetaClass COMOS_LOGIN and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; SERVICE_LOGIN -&amp;gt; BASICAUTH_SERVICE_LOGIN -&amp;gt; COMOS_LOGIN&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; COMOS_LOGIN&lt;br /&gt;
&lt;br /&gt;
[[File:ComosLogin_see_all.png|400px]][[File:ComosLogin_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
You have to Link a instance form COMOS_PROJECT or its children, so link here the Instance you created bevor in the new Created COMOS_PROJECT Childclass&lt;br /&gt;
with the checkbox you ask UBIK to Authenticate bevore sending data, could be that Systemsecurty is asking for this.&lt;br /&gt;
In Service URL you have to give the Comos WebstartPage url, and User and Password for Comos login (mostly Domainuser)&lt;br /&gt;
&lt;br /&gt;
[[File:New_login_MC.png|400px]]&lt;br /&gt;
[[File:New_Login.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Interface Admin Comos =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar like bevor go to MetaClass INTERFACE_ADMIN_COMOS and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; {}Comos.Interface.Administration -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
&lt;br /&gt;
[[File:IA_COMOS_see_all.png|400px]][[File:IA_COMOS_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, dont forget to link to the LoginObject please Save; &lt;br /&gt;
&lt;br /&gt;
[[File:IA_CMW_LINK.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To Configure the Proxys that should be Imported and Exported please open the New InterfaceAdmin in a RelationEditor. Than drag an drop all the relevant Proxy to the Interface admin Object.&lt;br /&gt;
&lt;br /&gt;
[[File:IA_RELATIONS.png|800px]]&lt;br /&gt;
&lt;br /&gt;
= Relation between Comos Project and Language =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Different to bevore RelationalClass SYSREL_PROJECT_LANGUAGE stays the SystemMetaClass.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; RELATIONDATA -&amp;gt; SYSREL_PROJECT_LANGUAGE&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}Comos -&amp;gt; {}Comos.Interface -&amp;gt; SYSREL_PROJECT_LANGUAGE&lt;br /&gt;
&lt;br /&gt;
[[File:Lang_REL_see_all.png|400px]][[File:Lang_REL_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Please open the Class in a Bulk Editor;&lt;br /&gt;
&lt;br /&gt;
[[File:REL_OVERVIEW.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To Create a new Instance set a Comos_Project Instance to LEFTUID and a Language Object to the RIGHTUID. &lt;br /&gt;
Add the Microsoft LCID number for your Language.&lt;br /&gt;
And also the Comos settings witch Language is the current Project, and User Default.&lt;br /&gt;
&lt;br /&gt;
The Languages from UBIK u find in&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; {}System -&amp;gt; {}System.Main -&amp;gt; {}System.Main.Language -&amp;gt; LANGUAGE -&amp;gt; {}System &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:REL_OVERVIEW.png&amp;diff=29079</id>
		<title>File:REL OVERVIEW.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:REL_OVERVIEW.png&amp;diff=29079"/>
				<updated>2025-10-16T12:34:30Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:Lang_REL_ContentView.png&amp;diff=29077</id>
		<title>File:Lang REL ContentView.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:Lang_REL_ContentView.png&amp;diff=29077"/>
				<updated>2025-10-16T12:26:22Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:Lang_REL_see_all.png&amp;diff=29078</id>
		<title>File:Lang REL see all.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:Lang_REL_see_all.png&amp;diff=29078"/>
				<updated>2025-10-16T12:26:22Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29076</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29076"/>
				<updated>2025-10-16T12:03:00Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
* Comos Project &lt;br /&gt;
* Comos Login&lt;br /&gt;
* Interface Admin Comos&lt;br /&gt;
* Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
= Comos Project =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; Comos -&amp;gt; Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]][[File:ComosProject_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
The Database ID is also the same as in Comos, on the Project settings for Mobile Solutions, the Enterprise Server here is that one from {{UBIK}} like you set up the Notification Endpoint.&lt;br /&gt;
Project_ID, Working_Overlay_ID is again form Comos, Project_ID is Mandatory anyway, if you want to connect with an WorkingOverly from Comos this ID is also needet.&lt;br /&gt;
The Registration folder is only needet when you want to use XML Files for Objects that are not Classified in Comos. &lt;br /&gt;
&lt;br /&gt;
[[File:New_Project_MC.png|400px]]&lt;br /&gt;
[[File:New_comos_project.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Comos Login =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar to COMOS_PROJECT  go to MetaClass COMOS_LOGIN and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; SERVICE_LOGIN -&amp;gt; BASICAUTH_SERVICE_LOGIN -&amp;gt; COMOS_LOGIN&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; Comos -&amp;gt; Comos.Interface -&amp;gt; COMOS_LOGIN&lt;br /&gt;
&lt;br /&gt;
[[File:ComosLogin_see_all.png|400px]][[File:ComosLogin_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
You have to Link a instance form COMOS_PROJECT or its children, so link here the Instance you created bevor in the new Created COMOS_PROJECT Childclass&lt;br /&gt;
with the checkbox you ask UBIK to Authenticate bevore sending data, could be that Systemsecurty is asking for this.&lt;br /&gt;
In Service URL you have to give the Comos WebstartPage url, and User and Password for Comos login (mostly Domainuser)&lt;br /&gt;
&lt;br /&gt;
[[File:New_login_MC.png|400px]]&lt;br /&gt;
[[File:New_Login.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Interface Admin Comos =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar like bevor go to MetaClass INTERFACE_ADMIN_COMOS and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; Comos -&amp;gt; Comos.Interface -&amp;gt; Comos.Interface.Administration -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
&lt;br /&gt;
[[File:IA_COMOS_see_all.png|400px]][[File:IA_COMOS_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, dont forget to link to the LoginObject please Save; &lt;br /&gt;
&lt;br /&gt;
[[File:IA_CMW_LINK.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To Configure the Proxys that should be Imported and Exported please open the New InterfaceAdmin in a RelationEditor. Than drag an drop all the relevant Proxy to the Interface admin Object.&lt;br /&gt;
&lt;br /&gt;
[[File:IA_RELATIONS.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Relation between Comos Project and Language =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:IA_RELATIONS.png&amp;diff=29075</id>
		<title>File:IA RELATIONS.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:IA_RELATIONS.png&amp;diff=29075"/>
				<updated>2025-10-16T12:02:36Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:IA_CMW_LINK.png&amp;diff=29074</id>
		<title>File:IA CMW LINK.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:IA_CMW_LINK.png&amp;diff=29074"/>
				<updated>2025-10-16T11:53:23Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29073</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29073"/>
				<updated>2025-10-16T11:44:33Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
* Comos Project &lt;br /&gt;
* Comos Login&lt;br /&gt;
* Interface Admin Comos&lt;br /&gt;
* Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
= Comos Project =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; Comos -&amp;gt; Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]][[File:ComosProject_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
The Database ID is also the same as in Comos, on the Project settings for Mobile Solutions, the Enterprise Server here is that one from {{UBIK}} like you set up the Notification Endpoint.&lt;br /&gt;
Project_ID, Working_Overlay_ID is again form Comos, Project_ID is Mandatory anyway, if you want to connect with an WorkingOverly from Comos this ID is also needet.&lt;br /&gt;
The Registration folder is only needet when you want to use XML Files for Objects that are not Classified in Comos. &lt;br /&gt;
&lt;br /&gt;
[[File:New_Project_MC.png|400px]]&lt;br /&gt;
[[File:New_comos_project.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Comos Login =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar to COMOS_PROJECT  go to MetaClass COMOS_LOGIN and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; SERVICE_LOGIN -&amp;gt; BASICAUTH_SERVICE_LOGIN -&amp;gt; COMOS_LOGIN&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; Comos -&amp;gt; Comos.Interface -&amp;gt; COMOS_LOGIN&lt;br /&gt;
&lt;br /&gt;
[[File:ComosLogin_see_all.png|400px]][[File:ComosLogin_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
You have to Link a instance form COMOS_PROJECT or its children, so link here the Instance you created bevor in the new Created COMOS_PROJECT Childclass&lt;br /&gt;
with the checkbox you ask UBIK to Authenticate bevore sending data, could be that Systemsecurty is asking for this.&lt;br /&gt;
In Service URL you have to give the Comos WebstartPage url, and User and Password for Comos login (mostly Domainuser)&lt;br /&gt;
&lt;br /&gt;
[[File:New_login_MC.png|400px]]&lt;br /&gt;
[[File:New_Login.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Interface Admin Comos =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar like bevor go to MetaClass INTERFACE_ADMIN_COMOS and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; INTERFACE_ADMIN_ROOT -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; Comos -&amp;gt; Comos.Interface -&amp;gt; Comos.Interface.Administration -&amp;gt; INTERFACE_ADMIN_COMOS &lt;br /&gt;
&lt;br /&gt;
[[File:IA_COMOS_see_all.png|400px]][[File:IA_COMOS_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Relation between Comos Project and Language =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:IA_COMOS_see_all.png&amp;diff=29072</id>
		<title>File:IA COMOS see all.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:IA_COMOS_see_all.png&amp;diff=29072"/>
				<updated>2025-10-16T11:44:10Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:IA_COMOS_ContentView.png&amp;diff=29071</id>
		<title>File:IA COMOS ContentView.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:IA_COMOS_ContentView.png&amp;diff=29071"/>
				<updated>2025-10-16T11:44:09Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29070</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29070"/>
				<updated>2025-10-16T09:43:42Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
* Comos Project &lt;br /&gt;
* Comos Login&lt;br /&gt;
* Interface Admin Comos&lt;br /&gt;
* Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
= Comos Project =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; Comos -&amp;gt; Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]][[File:ComosProject_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
The Database ID is also the same as in Comos, on the Project settings for Mobile Solutions, the Enterprise Server here is that one from {{UBIK}} like you set up the Notification Endpoint.&lt;br /&gt;
Project_ID, Working_Overlay_ID is again form Comos, Project_ID is Mandatory anyway, if you want to connect with an WorkingOverly from Comos this ID is also needet.&lt;br /&gt;
The Registration folder is only needet when you want to use XML Files for Objects that are not Classified in Comos. &lt;br /&gt;
&lt;br /&gt;
[[File:New_Project_MC.png|400px]]&lt;br /&gt;
[[File:New_comos_project.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Comos Login =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similar to COMOS_PROJECT  go to MetaClass COMOS_LOGIN and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; SERVICE_LOGIN -&amp;gt; BASICAUTH_SERVICE_LOGIN -&amp;gt; COMOS_LOGIN&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; Comos -&amp;gt; Comos.Interface -&amp;gt;COMOS_LOGIN&lt;br /&gt;
&lt;br /&gt;
[[File:ComosLogin_see_all.png|400px]][[File:ComosLogin_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
&lt;br /&gt;
You have to Link a instance form COMOS_PROJECT or its children, so link here the Instance you created bevor in the new Created COMOS_PROJECT Childclass&lt;br /&gt;
with the checkbox you ask UBIK to Authenticate bevore sending data, could be that Systemsecurty is asking for this.&lt;br /&gt;
In Service URL you have to give the Comos WebstartPage url, and User and Password for Comos login (mostly Domainuser)&lt;br /&gt;
&lt;br /&gt;
[[File:New_login_MC.png|400px]]&lt;br /&gt;
[[File:New_Login.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Interface Admin Comos =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Relation between Comos Project and Language =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:New_login_MC.png&amp;diff=29069</id>
		<title>File:New login MC.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:New_login_MC.png&amp;diff=29069"/>
				<updated>2025-10-16T09:43:15Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:New_Login.png&amp;diff=29068</id>
		<title>File:New Login.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:New_Login.png&amp;diff=29068"/>
				<updated>2025-10-16T09:43:14Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:ComosLogin_ContentView.png&amp;diff=29066</id>
		<title>File:ComosLogin ContentView.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:ComosLogin_ContentView.png&amp;diff=29066"/>
				<updated>2025-10-16T08:33:31Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:ComosLogin_see_all.png&amp;diff=29067</id>
		<title>File:ComosLogin see all.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:ComosLogin_see_all.png&amp;diff=29067"/>
				<updated>2025-10-16T08:33:31Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29065</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29065"/>
				<updated>2025-10-16T08:02:54Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
** Comos Project &lt;br /&gt;
** Comos Login&lt;br /&gt;
** Interface Admin Comos&lt;br /&gt;
** Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
= Comos Project =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; Comos -&amp;gt; Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]][[File:ComosProject_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
The Database ID is also the same as in Comos, on the Project settings for Mobile Solutions, the Enterprise Server here is that one from {{UBIK}} like you set up the Notification Endpoint.&lt;br /&gt;
Project_ID, Working_Overlay_ID is again form Comos, Project_ID is Mandatory anyway, if you want to connect with an WorkingOverly from Comos this ID is also needet.&lt;br /&gt;
The Registration folder is only needet when you want to use XML Files for Objects that are not Classified in Comos. &lt;br /&gt;
&lt;br /&gt;
[[File:New_Project_MC.png|400px]]&lt;br /&gt;
[[File:New_comos_project.png|400px]]&lt;br /&gt;
&lt;br /&gt;
= Comos Login =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Interface Admin Comos =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Relation between Comos Project and Language =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29064</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29064"/>
				<updated>2025-10-16T08:00:16Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: /* Studio */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
** Comos Project &lt;br /&gt;
** Comos Login&lt;br /&gt;
** Interface Admin Comos&lt;br /&gt;
** Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Studio =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 1. Comos Project&lt;br /&gt;
 &lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; Comos -&amp;gt; Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]][[File:ComosProject_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
After giving the new MetaClass a Name and Description, please Save; then you can generate you setting by opening the MetaClass in a Bulk Editor and create a new Instance.&lt;br /&gt;
You can name and Descripe it at will, but it is a god Idea to use a Name or Description that is also in Comos.&lt;br /&gt;
The Database ID is also the same as in Comos, on the Project settings for Mobile Solutions, the Enterprise Server here is that one from {{UBIK}} like you set up the Notification Endpoint.&lt;br /&gt;
Project_ID, Working_Overlay_ID is again form Comos, Project_ID is Mandatory anyway, if you want to connect with an WorkingOverly from Comos this ID is also needet.&lt;br /&gt;
The Registration folder is only needet when you want to use XML Files for Objects that are not Classified in Comos. &lt;br /&gt;
&lt;br /&gt;
[[File:New_Project_MC.png|400px]]&lt;br /&gt;
[[File:New_comos_project.png|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 2. Comos Login&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:New_Project_MC.png&amp;diff=29063</id>
		<title>File:New Project MC.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:New_Project_MC.png&amp;diff=29063"/>
				<updated>2025-10-16T07:59:37Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:New_comos_project.png&amp;diff=29062</id>
		<title>File:New comos project.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:New_comos_project.png&amp;diff=29062"/>
				<updated>2025-10-16T07:59:36Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29061</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29061"/>
				<updated>2025-10-16T07:42:00Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
** Comos Project &lt;br /&gt;
** Comos Login&lt;br /&gt;
** Interface Admin Comos&lt;br /&gt;
** Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Studio =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 1. Comos Project&lt;br /&gt;
 &lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; Comos -&amp;gt; Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]][[File:ComosProject_ContentView.png|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:ComosProject_ContentView.png&amp;diff=29060</id>
		<title>File:ComosProject ContentView.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:ComosProject_ContentView.png&amp;diff=29060"/>
				<updated>2025-10-16T07:41:48Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29059</id>
		<title>Setting Up UBIK for CUI</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=Setting_Up_UBIK_for_CUI&amp;diff=29059"/>
				<updated>2025-10-16T07:41:07Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Created page with &amp;quot;Setting uo a UBIK Database fur CUI Dataexchange &amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;  = Instructions = &amp;lt;!-- DO NOT MODIFY THE NAME OF...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting uo a UBIK Database fur CUI Dataexchange&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/Begin}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Instructions =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
To set up Interfacing on UBIK Database you need Configurations \ Objects&lt;br /&gt;
&lt;br /&gt;
** Comos Project &lt;br /&gt;
** Comos Login&lt;br /&gt;
** Interface Admin Comos&lt;br /&gt;
** Relation between Comos Project and Language&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Studio =&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 1. Comos Project&lt;br /&gt;
 &lt;br /&gt;
Best approatch is to go to MetaClass COMOS_PROJECT and derive a new Metaclass.&lt;br /&gt;
Reason is to get a Metaclass that is cut off from this SystemMetaClass, wich could be changed on an Update of UBIK.&lt;br /&gt;
&lt;br /&gt;
To find the MetaClass in {{UBIK}} See all goto -&amp;gt; SYSROOT -&amp;gt; SYSTEMOBJECT -&amp;gt; COMOS_PROJECT&lt;br /&gt;
Or on Content View you find it below Namespaces; goto -&amp;gt; Comos -&amp;gt; Comos.Interface -&amp;gt;COMOS_PROJECT&lt;br /&gt;
&lt;br /&gt;
[[File:ComosProject_see_all.png|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;{{Template:HowTo/End}}&amp;lt;!-- DO NOT REMOVE THIS --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&amp;lt;!-- DO NOT MODIFY THE NAME OF THIS SECTION, BUT REMOVE IT IF NOT REQUIRED --&amp;gt;&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:ComosProject_see_all.png&amp;diff=29058</id>
		<title>File:ComosProject see all.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:ComosProject_see_all.png&amp;diff=29058"/>
				<updated>2025-10-16T07:39:41Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:ComosProject_Content.png&amp;diff=29057</id>
		<title>File:ComosProject Content.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:ComosProject_Content.png&amp;diff=29057"/>
				<updated>2025-10-16T07:39:40Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=HowTo:Set_Up_CUI_Rest_API&amp;diff=29056</id>
		<title>HowTo:Set Up CUI Rest API</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=HowTo:Set_Up_CUI_Rest_API&amp;diff=29056"/>
				<updated>2025-10-16T06:33:37Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
The CUI -&amp;gt; &amp;quot;{{Comos}} {{UBIK}} Interface&amp;quot; is a Standard Dataexchange function betwen the tow Systems {{Comos}} and {{UBIK}} it is a bidirektional Communikation baesd on Comos WEB Rest API and a UBIK CUI Plugin.&lt;br /&gt;
&lt;br /&gt;
For Comos make sure you have a working Installation of {{Comos}} and {{Comos Web}} with acces to its {{Comos}} Database, you also need the License called “COMOS_Mobile_Worker_Server”&lt;br /&gt;
&lt;br /&gt;
On UBIK side to set it up please start with the Installation of UBIK, UBIK Database and its Webservices and EnterpriseServer(s)&lt;br /&gt;
&lt;br /&gt;
* [[HowTo:Install_UBIK_Studio]]&lt;br /&gt;
* [[HowTo:Install_UBIK_Database]]&lt;br /&gt;
* [[HowTo:Install_UBIK_Web_Service]]&lt;br /&gt;
* [[Configure_Enterprise_Service_for_CUI]]&lt;br /&gt;
&lt;br /&gt;
After that you have to possible ways to go on, Create a {{UBIK}} MetaClass strukte manually or via Import from Comos.&lt;br /&gt;
&lt;br /&gt;
If you want to export from Comos the first step is to check, update or Create Templates, like in this description PDF:&lt;br /&gt;
&lt;br /&gt;
[[:File:Admin_Comos_UBIK_Interface_2023_07_EN.pdf]]&lt;br /&gt;
&lt;br /&gt;
After Template Structure in Comos includes all the MetaClasses and Properties that you need on UBIK side, export these Comos Template as Metainformation for UBIK:&lt;br /&gt;
&lt;br /&gt;
In Standard Comos iDB there is a new Module section M67 for Comos Mobile Worker (UBIK)&lt;br /&gt;
For a standard MRO Use case there are Templates Predefined, these Templates are connected to Comos CDevices that have the Functional Classification C270 (iDB) (for cDB there is a C2 Classification available).&lt;br /&gt;
Bevor, please make sure that the Project settings for CUI Interface are there and Active; you find them in Project settings an make sure that the Active checkbox on COMOS Mobile Worker Interface is checked.&lt;br /&gt;
&lt;br /&gt;
First make sure the Interface is &amp;quot;Active&amp;quot; in Project settings of SO1 (or your used Workinglayer)&lt;br /&gt;
&lt;br /&gt;
[[File:Project_activation.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Next is to oben the ComosBaseObject in SO1, it should be found in iDB Databases at &amp;quot;@30|M67|A50|A20|A10&amp;quot;, please make sure that the filepath for the xml is existing and accessable.&lt;br /&gt;
&lt;br /&gt;
[[File:Export_from_Comos.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To import in a UBIK Database you have to use {{UBIK}} Smart Studio  [[Smart_Studio]] &lt;br /&gt;
&lt;br /&gt;
* [[Smart_Modelling]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=HowTo:Set_Up_CUI_Rest_API&amp;diff=29055</id>
		<title>HowTo:Set Up CUI Rest API</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=HowTo:Set_Up_CUI_Rest_API&amp;diff=29055"/>
				<updated>2025-10-16T06:33:26Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
The CUI -&amp;gt; &amp;quot;{{Comos}} {{UBIK}} Interface&amp;quot; is a Standard Dataexchange function betwen the tow Systems {{Comos}} and {{UBIK}} it is a bidirektional Communikation baesd on Comos WEB Rest API and a UBIK CUI Plugin.&lt;br /&gt;
&lt;br /&gt;
For Comos make sure you have a working Installation of {{Comos}} and {{Comos Web}} with acces to its {{Comos}} Database, you also need the License called “COMOS_Mobile_Worker_Server”&lt;br /&gt;
&lt;br /&gt;
On UBIK side to set it up please start with the Installation of UBIK, UBIK Database and its Webservices and EnterpriseServer(s)&lt;br /&gt;
&lt;br /&gt;
* [[HowTo:Install_UBIK_Studio]]&lt;br /&gt;
* [[HowTo:Install_UBIK_Database]]&lt;br /&gt;
* [[HowTo:Install_UBIK_Web_Service]]&lt;br /&gt;
* [[Configure_Enterprise_Service_for_CUI]]&lt;br /&gt;
&lt;br /&gt;
After that you have to possible ways to go on, Create a {{UBIK}} MetaClass strukte manually or via Import from Comos.&lt;br /&gt;
&lt;br /&gt;
If you want to export from Comos the first step is to check, update or Create Templates, like in this description PDF:&lt;br /&gt;
&lt;br /&gt;
[[:File:Admin_Comos_UBIK_Interface_2023_07_EN.pdf]]&lt;br /&gt;
&lt;br /&gt;
After Template Structure in Comos includes all the MetaClasses and Properties that you need on UBIK side, export these Comos Template as Metainformation for UBIK:&lt;br /&gt;
&lt;br /&gt;
In Standard Comos iDB there is a new Module section M67 for Comos Mobile Worker (UBIK)&lt;br /&gt;
For a standard MRO Use case there are Templates Predefined, these Templates are connected to Comos CDevices that have the Functional Classification C270 (iDB) (for cDB there is a C2 Classification available).&lt;br /&gt;
Bevor, please make sure that the Project settings for CUI Interface are there and Active; you find them in Project settings an make sure that the Active checkbox on COMOS Mobile Worker Interface is checked.&lt;br /&gt;
&lt;br /&gt;
First make sure the Interface is &amp;quot;Active&amp;quot; in Project settings of SO1 (or your used Workinglayer)&lt;br /&gt;
&lt;br /&gt;
[[File:Project_activation.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Next is to oben the ComosBaseObject in SO1, it should be found in iDB Databases at &amp;quot;@30|M67|A50|A20|A10&amp;quot;, please make sure that the filepath for the xml is existing and accessable.&lt;br /&gt;
&lt;br /&gt;
[[File:Export_from_Comos.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To import in a UBIK Database you have to use {{UBIK}} Smart Studio  [[Smart_Studio]] &lt;br /&gt;
&lt;br /&gt;
* [[Smart_Modelling]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Smart Modelling|Set Up CUI Rest API]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=HowTo:Set_Up_CUI_Rest_API&amp;diff=29054</id>
		<title>HowTo:Set Up CUI Rest API</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=HowTo:Set_Up_CUI_Rest_API&amp;diff=29054"/>
				<updated>2025-10-16T06:31:32Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
The CUI -&amp;gt; &amp;quot;{{Comos}} {{UBIK}} Interface&amp;quot; is a Standard Dataexchange function betwen the tow Systems {{Comos}} and {{UBIK}} it is a bidirektional Communikation baesd on Comos WEB Rest API and a UBIK CUI Plugin.&lt;br /&gt;
&lt;br /&gt;
For Comos make sure you have a working Installation of {{Comos}} and {{Comos Web}} with acces to its {{Comos}} Database, you also need the License called “COMOS_Mobile_Worker_Server”&lt;br /&gt;
&lt;br /&gt;
On UBIK side to set it up please start with the Installation of UBIK, UBIK Database and its Webservices and EnterpriseServer(s)&lt;br /&gt;
&lt;br /&gt;
* [[HowTo:Install_UBIK_Studio]]&lt;br /&gt;
* [[HowTo:Install_UBIK_Database]]&lt;br /&gt;
* [[HowTo:Install_UBIK_Web_Service]]&lt;br /&gt;
* [[Configure_Enterprise_Service_for_CUI]]&lt;br /&gt;
&lt;br /&gt;
After that you have to possible ways to go on, Create a {{UBIK}} MetaClass strukte manually or via Import from Comos.&lt;br /&gt;
&lt;br /&gt;
If you want to export from Comos the first step is to check, update or Create Templates, like in this description PDF:&lt;br /&gt;
&lt;br /&gt;
[[:File:Admin_Comos_UBIK_Interface_2023_07_EN.pdf]]&lt;br /&gt;
&lt;br /&gt;
After Template Structure in Comos includes all the MetaClasses and Properties that you need on UBIK side, export these Comos Template as Metainformation for UBIK:&lt;br /&gt;
&lt;br /&gt;
In Standard Comos iDB there is a new Module section M67 for Comos Mobile Worker (UBIK)&lt;br /&gt;
For a standard MRO Use case there are Templates Predefined, these Templates are connected to Comos CDevices that have the Functional Classification C270 (iDB) (for cDB there is a C2 Classification available).&lt;br /&gt;
Bevor, please make sure that the Project settings for CUI Interface are there and Active; you find them in Project settings an make sure that the Active checkbox on COMOS Mobile Worker Interface is checked.&lt;br /&gt;
&lt;br /&gt;
First make sure the Interface is &amp;quot;Active&amp;quot; in Project settings of SO1 (or your used Workinglayer)&lt;br /&gt;
&lt;br /&gt;
[[File:Project_activation.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Next is to oben the ComosBaseObject in SO1, it should be found in iDB Databases at &amp;quot;@30|M67|A50|A20|A10&amp;quot;, please make sure that the filepath for the xml is existing and accessable.&lt;br /&gt;
&lt;br /&gt;
[[File:Export_from_Comos.png|400px]]&lt;br /&gt;
&lt;br /&gt;
To import in a UBIK Database you have to use {{UBIK Smart Studio}}&lt;br /&gt;
&lt;br /&gt;
* [[Smart_Modelling]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Smart Modelling|Set Up CUI Rest API]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:Export_from_Comos.png&amp;diff=29053</id>
		<title>File:Export from Comos.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:Export_from_Comos.png&amp;diff=29053"/>
				<updated>2025-10-16T06:31:18Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=HowTo:Set_Up_CUI_Rest_API&amp;diff=29052</id>
		<title>HowTo:Set Up CUI Rest API</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=HowTo:Set_Up_CUI_Rest_API&amp;diff=29052"/>
				<updated>2025-10-16T06:31:01Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
The CUI -&amp;gt; &amp;quot;{{Comos}} {{UBIK}} Interface&amp;quot; is a Standard Dataexchange function betwen the tow Systems {{Comos}} and {{UBIK}} it is a bidirektional Communikation baesd on Comos WEB Rest API and a UBIK CUI Plugin.&lt;br /&gt;
&lt;br /&gt;
For Comos make sure you have a working Installation of {{Comos}} and {{Comos Web}} with acces to its {{Comos}} Database, you also need the License called “COMOS_Mobile_Worker_Server”&lt;br /&gt;
&lt;br /&gt;
On UBIK side to set it up please start with the Installation of UBIK, UBIK Database and its Webservices and EnterpriseServer(s)&lt;br /&gt;
&lt;br /&gt;
* [[HowTo:Install_UBIK_Studio]]&lt;br /&gt;
* [[HowTo:Install_UBIK_Database]]&lt;br /&gt;
* [[HowTo:Install_UBIK_Web_Service]]&lt;br /&gt;
* [[Configure_Enterprise_Service_for_CUI]]&lt;br /&gt;
&lt;br /&gt;
After that you have to possible ways to go on, Create a {{UBIK}} MetaClass strukte manually or via Import from Comos.&lt;br /&gt;
&lt;br /&gt;
If you want to export from Comos the first step is to check, update or Create Templates, like in this description PDF:&lt;br /&gt;
&lt;br /&gt;
[[:File:Admin_Comos_UBIK_Interface_2023_07_EN.pdf]]&lt;br /&gt;
&lt;br /&gt;
After Template Structure in Comos includes all the MetaClasses and Properties that you need on UBIK side, export these Comos Template as Metainformation for UBIK:&lt;br /&gt;
&lt;br /&gt;
In Standard Comos iDB there is a new Module section M67 for Comos Mobile Worker (UBIK)&lt;br /&gt;
For a standard MRO Use case there are Templates Predefined, these Templates are connected to Comos CDevices that have the Functional Classification C270 (iDB) (for cDB there is a C2 Classification available).&lt;br /&gt;
Bevor, please make sure that the Project settings for CUI Interface are there and Active; you find them in Project settings an make sure that the Active checkbox on COMOS Mobile Worker Interface is checked.&lt;br /&gt;
&lt;br /&gt;
First make sure the Interface is &amp;quot;Active&amp;quot; in Project settings of SO1 (or your used Workinglayer)&lt;br /&gt;
&lt;br /&gt;
[[File:Project_activation.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Next is to oben the ComosBaseObject in SO1, it should be found in iDB Databases at &amp;quot;@30|M67|A50|A20|A10&amp;quot;, please make sure that the filepath for the xml is existing and accessable.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To import in a UBIK Database you have to use {{UBIK Smart Studio}}&lt;br /&gt;
&lt;br /&gt;
* [[Smart_Modelling]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Smart Modelling|Set Up CUI Rest API]]&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	<entry>
		<id>https://wikitest.augmensys.com/index.php?title=File:Project_activation.png&amp;diff=29051</id>
		<title>File:Project activation.png</title>
		<link rel="alternate" type="text/html" href="https://wikitest.augmensys.com/index.php?title=File:Project_activation.png&amp;diff=29051"/>
				<updated>2025-10-16T06:30:15Z</updated>
		
		<summary type="html">&lt;p&gt;FMW: Datei hochgeladen mit MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Datei hochgeladen mit MsUpload&lt;/div&gt;</summary>
		<author><name>FMW</name></author>	</entry>

	</feed>