Max number of replication elements?
13th January 2024
Hi Kristopher, There is not really a limit, but the load on that DMA will get higher, and that might define a limit in the end. Each replicated element is …
Answer
13th January 2024
Hi Kristopher, There is not really a limit, but the load on that DMA will get higher, and that might define a limit in the end. Each replicated element is …
12th January 2024
I tried using Root Alarm ID for Get Alarm Details API call but the comment doesn’t shows up. If I use the latest alarm ID which gets updated after adding …
12th January 2024
In C:\Skyline DataMiner\Backup i have two files: BackupSettings.xml DataMinerBackup.bks.xml No CustomBackup xml found I’ll attach screen shots of the contents, looks alright to me.
12th January 2024
Hi José, It is unfortunately not possible right now to feed the DOM instance ID of the DOM instance inside a form to another component. I agree that it would …
12th January 2024
As you can see from the image the publish selection is not even possible so in the ouput box I have no messages other then log of DIS starting up …
12th January 2024
In the Legacy Reporter, you should go to templates and create a report template, put “Template Type” on “multiple elements” and add a Status Query block, click save. Then in …
12th January 2024
Hi Jeroen, We have very recently done some adjustments to improve the DOM Instance field in a web form. This change will be available in DataMiner 10.4.3. One of the …
12th January 2024
Hi, We just release an increment to allow access to files hosted in C:\Skyline DataMiner\Webpages\public\ via dataminer.services remote access. (Remote access | DataMiner Docs) Wkr
12th January 2024
DIS keeps a list of all frequently used units, to push towards consistency between drivers by keeping a single unit format for each unit (e.g. avoid some people switching between …
12th January 2024
Hi, Are you getting any exceptions or errors in DIS? Or do you see anything in the DIS Output window?
12th January 2024
The backup settings I’ve tried is either the pre-defined Full Backup or Full Backup without database, and no matter which – the filename still indicate it’s a custom backup. /Roger
12th January 2024
Hi Daniel, there is a method to retrieve license information called NT_GET_LICENSES (154). I’m not sure if there is a standard way to achieve your desired functionality, however, one way to …
12th January 2024
Hi Roger! Please, go to the system center of your Cube client and on the backup tab, click on content. What backup type have you selected for your DMA?
12th January 2024
Hi Jens, You could use the methodTryGetArgumentValue to check if there is a value available. Example: if (args.TryGetArgumentValue(myArgument, out myArgumentValue)) { // do something } Hope it helps. Reference: RN35783
12th January 2024
Hi Jens, The OnArgumentsProcessedInputArgs object contains a HasArgumentValue which will return false if the optional argument is not filled in (see docs). Additionally, you can also use the TryGetArgumentValue which will try to …